@@ -44,6 +44,7 @@ type AllowlistRecord {
4444
4545input AllowlistRecordHypercertWhereInput {
4646 attestations_count : NumberSearchOptions
47+ burned : BooleanSearchOptions
4748 creation_block_number : BigIntSearchOptions
4849 creation_block_timestamp : BigIntSearchOptions
4950 creator_address : StringSearchOptions
@@ -134,6 +135,7 @@ input AttestationAttestationSchemaWhereInput {
134135
135136input AttestationHypercertWhereInput {
136137 attestations_count : NumberSearchOptions
138+ burned : BooleanSearchOptions
137139 creation_block_number : BigIntSearchOptions
138140 creation_block_timestamp : BigIntSearchOptions
139141 creator_address : StringSearchOptions
@@ -331,6 +333,7 @@ input CollectionBlueprintWhereInput {
331333
332334input CollectionHypercertWhereInput {
333335 attestations_count : NumberSearchOptions
336+ burned : BooleanSearchOptions
334337 creation_block_number : BigIntSearchOptions
335338 creation_block_timestamp : BigIntSearchOptions
336339 creator_address : StringSearchOptions
@@ -398,6 +401,9 @@ scalar EthBigInt
398401
399402"""Fraction of an hypercert"""
400403type Fraction {
404+ """Whether the fraction has been burned"""
405+ burned : Boolean
406+
401407 """The ID of the claims"""
402408 claims_id : String
403409
@@ -461,6 +467,7 @@ input FractionMetadataWhereInput {
461467}
462468
463469input FractionSortOptions {
470+ burned : SortOrder = null
464471 creation_block_number : SortOrder = null
465472 creation_block_timestamp : SortOrder = null
466473 fraction_id : SortOrder = null
@@ -474,6 +481,7 @@ input FractionSortOptions {
474481}
475482
476483input FractionWhereInput {
484+ burned : BooleanSearchOptions
477485 creation_block_number : BigIntSearchOptions
478486 creation_block_timestamp : BigIntSearchOptions
479487 fraction_id : StringSearchOptions
@@ -667,6 +675,9 @@ type Hypercert {
667675 """Count of attestations referencing this hypercert"""
668676 attestations_count : Int
669677
678+ """Whether the hypercert has been burned"""
679+ burned : Boolean
680+
670681 """The contract that the hypercert is associated with"""
671682 contract : Contract
672683
@@ -729,6 +740,9 @@ type HypercertBaseType {
729740 """Count of attestations referencing this hypercert"""
730741 attestations_count : Int
731742
743+ """Whether the hypercert has been burned"""
744+ burned : Boolean
745+
732746 """The UUID of the contract as stored in the database"""
733747 contracts_id : ID
734748 creation_block_number : EthBigInt
@@ -765,6 +779,7 @@ input HypercertContractWhereInput {
765779}
766780
767781input HypercertFractionWhereInput {
782+ burned : BooleanSearchOptions
768783 creation_block_number : BigIntSearchOptions
769784 creation_block_timestamp : BigIntSearchOptions
770785 fraction_id : StringSearchOptions
@@ -796,6 +811,7 @@ input HypercertMetadataWhereInput {
796811
797812input HypercertSortOptions {
798813 attestations_count : SortOrder = null
814+ burned : SortOrder = null
799815 creation_block_number : SortOrder = null
800816 creation_block_timestamp : SortOrder = null
801817 creator_address : SortOrder = null
@@ -812,6 +828,7 @@ input HypercertSortOptions {
812828input HypercertWhereInput {
813829 attestations : HypercertAttestationWhereInput = {}
814830 attestations_count : NumberSearchOptions
831+ burned : BooleanSearchOptions
815832 contract : HypercertContractWhereInput = {}
816833 creation_block_number : BigIntSearchOptions
817834 creation_block_timestamp : BigIntSearchOptions
@@ -835,6 +852,9 @@ type HypercertWithMetadata {
835852 """Count of attestations referencing this hypercert"""
836853 attestations_count : Int
837854
855+ """Whether the hypercert has been burned"""
856+ burned : Boolean
857+
838858 """The UUID of the contract as stored in the database"""
839859 contracts_id : ID
840860 creation_block_number : EthBigInt
@@ -931,6 +951,7 @@ type Metadata {
931951
932952input MetadataHypercertWhereInput {
933953 attestations_count : NumberSearchOptions
954+ burned : BooleanSearchOptions
934955 creation_block_number : BigIntSearchOptions
935956 creation_block_timestamp : BigIntSearchOptions
936957 creator_address : StringSearchOptions
@@ -1029,6 +1050,7 @@ type Order {
10291050
10301051input OrderHypercertWhereInput {
10311052 attestations_count : NumberSearchOptions
1053+ burned : BooleanSearchOptions
10321054 creation_block_number : BigIntSearchOptions
10331055 creation_block_timestamp : BigIntSearchOptions
10341056 creator_address : StringSearchOptions
@@ -1146,6 +1168,7 @@ type Sale {
11461168
11471169input SaleHypercertWhereInput {
11481170 attestations_count : NumberSearchOptions
1171+ burned : BooleanSearchOptions
11491172 creation_block_number : BigIntSearchOptions
11501173 creation_block_timestamp : BigIntSearchOptions
11511174 creator_address : StringSearchOptions
0 commit comments