diff --git a/Cargo.lock b/Cargo.lock index 809a3b4c41908de5d61cb2a30a3f9d1b98f7f943..ae6df0a9238d6e11769df01611dd97784fba0718 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -957,9 +957,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.18" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c" +checksum = "80c21025abd42669a92efc996ef13cfb2c5c627858421ea58d5c3b331a6c134f" dependencies = [ "clap_builder", "clap_derive", @@ -967,21 +967,21 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.18" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7" +checksum = "458bf1f341769dfcf849846f65dffdf9146daa56bcd2a47cb4e1de9915567c99" dependencies = [ "anstream", "anstyle", "clap_lex", - "strsim", + "strsim 0.11.0", ] [[package]] name = "clap_derive" -version = "4.4.7" +version = "4.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442" +checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47" dependencies = [ "heck", "proc-macro2", @@ -991,9 +991,9 @@ dependencies = [ [[package]] name = "clap_lex" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" +checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" [[package]] name = "colorchoice" @@ -1319,7 +1319,7 @@ dependencies = [ "ident_case", "proc-macro2", "quote", - "strsim", + "strsim 0.10.0", "syn 1.0.109", ] @@ -1333,7 +1333,7 @@ dependencies = [ "ident_case", "proc-macro2", "quote", - "strsim", + "strsim 0.10.0", "syn 2.0.48", ] @@ -1900,7 +1900,7 @@ dependencies = [ [[package]] name = "gcli" -version = "0.2.5" +version = "0.2.6" dependencies = [ "anyhow", "bs58", @@ -2003,9 +2003,9 @@ dependencies = [ [[package]] name = "graphql_client" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa61bb9dc6d373a8b465a5da17b62809483e8527a34b0e9034dc0915b09e160a" +checksum = "09cdf7b487d864c2939b23902291a5041bc4a84418268f25fda1c8d4e15ad8fa" dependencies = [ "graphql_query_derive", "reqwest", @@ -2015,9 +2015,9 @@ dependencies = [ [[package]] name = "graphql_client_codegen" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4e55df64cc702c4ad6647f8df13a799ad11688a3781fadf5045f7ba12733fa9b" +checksum = "a40f793251171991c4eb75bd84bc640afa8b68ff6907bc89d3b712a22f700506" dependencies = [ "graphql-introspection-query", "graphql-parser", @@ -2032,9 +2032,9 @@ dependencies = [ [[package]] name = "graphql_query_derive" -version = "0.12.0" +version = "0.13.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d52fc9cde811f44b15ec0692b31e56a3067f6f431c5ace712f286e47c1dacc98" +checksum = "00bda454f3d313f909298f626115092d348bc231025699f557b27e248475f48c" dependencies = [ "graphql_client_codegen", "proc-macro2", @@ -4808,6 +4808,12 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623" +[[package]] +name = "strsim" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" + [[package]] name = "substrate-bip39" version = "0.4.5" diff --git a/Cargo.toml b/Cargo.toml index 682a99fe0cc18f98257b2094b13527a381fb0fbe..16e9344cabc821a48957d3bbe691a70d90445b66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ rust-version = "1.75.0" license = "AGPL-3.0-only" name = "gcli" repository = "https://git.duniter.org/clients/rust/gcli-v2s" -version = "0.2.5" +version = "0.2.6" [dependencies] # subxt is main dependency @@ -23,11 +23,11 @@ sp-core = { git = "https://github.com/duniter/duniter-polkadot-sdk.git", branch sp-runtime = { git = "https://github.com/duniter/duniter-polkadot-sdk.git", branch = "duniter-substrate-v1.6.0" } # crates.io dependencies anyhow = "^1.0" -clap = { version = "^4.4.18", features = ["derive"] } +clap = { version = "^4.5.0", features = ["derive"] } codec = { package = "parity-scale-codec", version = "^3.6.9" } env_logger = "^0.10" futures = "^0.3.30" -graphql_client = { version = "^0.12.0", features = ["reqwest"] } +graphql_client = { version = "^0.13.0", features = ["reqwest"] } hex = "^0.4.3" log = "^0.4.20" reqwest = "^0.11.24" diff --git a/README.md b/README.md index e4ae8d8dfe87c22e67a777e88a0f538b7d54910b..8b082058984c748a53d2f7ba913d003697475f1a 100644 --- a/README.md +++ b/README.md @@ -66,25 +66,3 @@ Secret and/or public keys can always be passed using `--secret` and `--address`. Secret key format can be changed using `--secret-format` with the following values: * `substrate`: a Substrate secret address (optionally followed by a derivation path), or BIP39 mnemonic * `seed`: a 32-bytes seed in hexadecimal (Duniter v1 compatible) - -## TODO - -- [x] implement config formatter -- [x] add link/unlink account commands -- [x] migrate all xt to submit_call_and_look_event -- [x] add transfer with unit (ĞD, UD...) -- [x] add more runtime-info like cert count, wot and smith params... -- [x] add more info on identity view like status, number certs emitted, received -- [x] implement squid indexer to get cert list -- [ ] implement indexer tx history... -- [ ] add more info like sudo key, block interval -- [ ] better format runtime info block number (duration in days...) and perbill (%) -- [ ] add proper tabulation for runtime info -- [ ] add clap complete for autocompletion -- [ ] allow to listen to multiple events (like SmithCertAdded and SmithMembershipAdded) -- [ ] -- [ ] -- [ ] -- [ ] -- [ ] -- [ ] \ No newline at end of file diff --git a/res/indexer-queries.graphql b/res/indexer-queries.graphql index 5ede81e08c17694d15304b12cd20cdfe81b975a2..bf7bb86ea5a4a7e3c28fecfee5d6ffb9fbcdc5f1 100644 --- a/res/indexer-queries.graphql +++ b/res/indexer-queries.graphql @@ -1,18 +1,18 @@ query IdentityNameByIndex($index: Int!) { - identities(where: {index_eq: $index}) { + identities(where: { index_eq: $index }) { name } } query IdentityInfo($index: Int!) { - identities(where: {index_eq: $index}) { + identities(where: { index_eq: $index }) { name - certIssued(where: {active_eq: true}) { + certIssued(orderBy: expireOn_DESC, where: { isActive_eq: true }) { receiver { name } } - certReceived(where: {active_eq: true}) { + certReceived(orderBy: expireOn_DESC, where: { isActive_eq: true }) { issuer { name } @@ -20,11 +20,21 @@ query IdentityInfo($index: Int!) { linkedAccount { id } + smithCertIssued(orderBy: createdOn_DESC) { + receiver { + name + } + } + smithCertReceived(orderBy: createdOn_DESC) { + issuer { + name + } + } } } query IdentityNameByPubkey($pubkey: String!) { - identities(where: {account: {id_eq: $pubkey}}) { + identities(where: { account: { id_eq: $pubkey } }) { name } } @@ -36,7 +46,7 @@ query LatestBlock { } query GenesisHash { - blocks(where: {height_eq: 0}) { + blocks(where: { height_eq: 0 }) { hash } } diff --git a/res/indexer-schema.json b/res/indexer-schema.json index d1923a3e48c2f014bb10ceadd6f3e779b4d6804c..705f62733cef229d3588074a72ba6d288a933f4d 100644 --- a/res/indexer-schema.json +++ b/res/indexer-schema.json @@ -102,7 +102,9 @@ "queryType": { "name": "Query" }, - "subscriptionType": null, + "subscriptionType": { + "name": "Subscription" + }, "types": [ { "description": null, @@ -2076,7 +2078,7 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "CertCreationWhereInput", + "name": "CertEventWhereInput", "ofType": null } }, @@ -2092,7 +2094,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CertCreationOrderByInput", + "name": "CertEventOrderByInput", "ofType": null } } @@ -2122,7 +2124,7 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "certCreations", + "name": "certEvents", "type": { "kind": "NON_NULL", "name": null, @@ -2134,7 +2136,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertCreation", + "name": "CertEvent", "ofType": null } } @@ -2161,10 +2163,10 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "certCreationById", + "name": "certEventById", "type": { "kind": "OBJECT", - "name": "CertCreation", + "name": "CertEvent", "ofType": null } }, @@ -2185,13 +2187,13 @@ } } ], - "deprecationReason": "Use certCreationById", + "deprecationReason": "Use certEventById", "description": null, "isDeprecated": true, - "name": "certCreationByUniqueInput", + "name": "certEventByUniqueInput", "type": { "kind": "OBJECT", - "name": "CertCreation", + "name": "CertEvent", "ofType": null } }, @@ -2212,7 +2214,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CertCreationOrderByInput", + "name": "CertEventOrderByInput", "ofType": null } } @@ -2245,7 +2247,7 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "CertCreationWhereInput", + "name": "CertEventWhereInput", "ofType": null } } @@ -2253,13 +2255,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "certCreationsConnection", + "name": "certEventsConnection", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "CertCreationsConnection", + "name": "CertEventsConnection", "ofType": null } } @@ -2272,7 +2274,7 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "CertRenewalWhereInput", + "name": "SmithCertWhereInput", "ofType": null } }, @@ -2288,7 +2290,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CertRenewalOrderByInput", + "name": "SmithCertOrderByInput", "ofType": null } } @@ -2318,7 +2320,7 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "certRenewals", + "name": "smithCerts", "type": { "kind": "NON_NULL", "name": null, @@ -2330,7 +2332,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertRenewal", + "name": "SmithCert", "ofType": null } } @@ -2357,10 +2359,10 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "certRenewalById", + "name": "smithCertById", "type": { "kind": "OBJECT", - "name": "CertRenewal", + "name": "SmithCert", "ofType": null } }, @@ -2381,13 +2383,13 @@ } } ], - "deprecationReason": "Use certRenewalById", + "deprecationReason": "Use smithCertById", "description": null, "isDeprecated": true, - "name": "certRenewalByUniqueInput", + "name": "smithCertByUniqueInput", "type": { "kind": "OBJECT", - "name": "CertRenewal", + "name": "SmithCert", "ofType": null } }, @@ -2408,7 +2410,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CertRenewalOrderByInput", + "name": "SmithCertOrderByInput", "ofType": null } } @@ -2441,7 +2443,7 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "CertRenewalWhereInput", + "name": "SmithCertWhereInput", "ofType": null } } @@ -2449,13 +2451,13 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "certRenewalsConnection", + "name": "smithCertsConnection", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "CertRenewalsConnection", + "name": "SmithCertsConnection", "ofType": null } } @@ -2468,7 +2470,7 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "CertRemovalWhereInput", + "name": "MembershipEventWhereInput", "ofType": null } }, @@ -2484,7 +2486,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CertRemovalOrderByInput", + "name": "MembershipEventOrderByInput", "ofType": null } } @@ -2514,7 +2516,7 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "certRemovals", + "name": "membershipEvents", "type": { "kind": "NON_NULL", "name": null, @@ -2526,7 +2528,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertRemoval", + "name": "MembershipEvent", "ofType": null } } @@ -2553,10 +2555,10 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "certRemovalById", + "name": "membershipEventById", "type": { "kind": "OBJECT", - "name": "CertRemoval", + "name": "MembershipEvent", "ofType": null } }, @@ -2577,13 +2579,13 @@ } } ], - "deprecationReason": "Use certRemovalById", + "deprecationReason": "Use membershipEventById", "description": null, "isDeprecated": true, - "name": "certRemovalByUniqueInput", + "name": "membershipEventByUniqueInput", "type": { "kind": "OBJECT", - "name": "CertRemoval", + "name": "MembershipEvent", "ofType": null } }, @@ -2604,7 +2606,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "CertRemovalOrderByInput", + "name": "MembershipEventOrderByInput", "ofType": null } } @@ -2637,7 +2639,7 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "CertRemovalWhereInput", + "name": "MembershipEventWhereInput", "ofType": null } } @@ -2645,224 +2647,307 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "certRemovalsConnection", + "name": "membershipEventsConnection", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "CertRemovalsConnection", + "name": "MembershipEventsConnection", "ofType": null } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithCerts", + "name": "squidStatus", + "type": { + "kind": "OBJECT", + "name": "SquidStatus", + "ofType": null + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Query", + "possibleTypes": null + }, + { + "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Int", + "possibleTypes": null + }, + { + "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "String", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": "BlockHeight-blockHash - e.g. 0001812319-0001c", + "isDeprecated": false, + "name": "id", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithCertById", + "name": "height", "type": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } - } - } - ], - "deprecationReason": "Use smithCertById", + "args": [], + "deprecationReason": null, "description": null, - "isDeprecated": true, - "name": "smithCertByUniqueInput", + "isDeprecated": false, + "name": "hash", "type": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertOrderByInput", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithCertsConnection", + "name": "parentHash", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SmithCertsConnection", + "kind": "SCALAR", + "name": "Bytes", "ofType": null } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertCreationWhereInput", - "ofType": null - } + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "stateRoot", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "extrinsicsicRoot", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "specName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "specVersion", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "implName", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "implVersion", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "timestamp", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "DateTime", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "validator", + "type": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "extrinsicsCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "callsCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "eventsCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicWhereInput", + "ofType": null + } }, { "defaultValue": null, @@ -2876,7 +2961,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SmithCertCreationOrderByInput", + "name": "ExtrinsicOrderByInput", "ofType": null } } @@ -2906,7 +2991,7 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithCertCreations", + "name": "extrinsics", "type": { "kind": "NON_NULL", "name": null, @@ -2918,38 +3003,11 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithCertCreation", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", + "name": "Extrinsic", "ofType": null } } } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "smithCertCreationById", - "type": { - "kind": "OBJECT", - "name": "SmithCertCreation", - "ofType": null } }, { @@ -2959,46 +3017,25 @@ "description": null, "name": "where", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", + "ofType": null } - } - ], - "deprecationReason": "Use smithCertCreationById", - "description": null, - "isDeprecated": true, - "name": "smithCertCreationByUniqueInput", - "type": { - "kind": "OBJECT", - "name": "SmithCertCreation", - "ofType": null - } - }, - { - "args": [ + }, { "defaultValue": null, "description": null, "name": "orderBy", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertCreationOrderByInput", - "ofType": null - } + "kind": "ENUM", + "name": "CallOrderByInput", + "ofType": null } } } @@ -3006,45 +3043,43 @@ { "defaultValue": null, "description": null, - "name": "after", + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "first", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertCreationWhereInput", - "ofType": null - } } ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithCertCreationsConnection", + "name": "calls", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SmithCertCreationsConnection", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Call", + "ofType": null + } + } } } }, @@ -3056,7 +3091,7 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "SmithCertRenewalWhereInput", + "name": "EventWhereInput", "ofType": null } }, @@ -3072,7 +3107,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SmithCertRenewalOrderByInput", + "name": "EventOrderByInput", "ofType": null } } @@ -3102,7 +3137,7 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithCertRenewals", + "name": "events", "type": { "kind": "NON_NULL", "name": null, @@ -3114,87 +3149,226 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithCertRenewal", + "name": "Event", "ofType": null } } } } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Block", + "possibleTypes": null + }, + { + "description": "Binary data encoded as a hex string always prefixed with 0x", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Bytes", + "possibleTypes": null + }, + { + "description": "A date-time string in simplified extended ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ)", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "DateTime", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "block", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Block", + "ofType": null } - ], + } + }, + { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithCertRenewalById", + "name": "call", "type": { - "kind": "OBJECT", - "name": "SmithCertRenewal", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Call", + "ofType": null + } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } - } + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "index", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null } - ], - "deprecationReason": "Use smithCertRenewalById", + } + }, + { + "args": [], + "deprecationReason": null, "description": null, - "isDeprecated": true, - "name": "smithCertRenewalByUniqueInput", + "isDeprecated": false, + "name": "version", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "signature", "type": { "kind": "OBJECT", - "name": "SmithCertRenewal", + "name": "ExtrinsicSignature", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "tip", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "fee", + "type": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "success", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "error", + "type": { + "kind": "SCALAR", + "name": "JSON", "ofType": null } }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "hash", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Bytes", + "ofType": null + } + } + }, { "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", + "ofType": null + } + }, { "defaultValue": null, "description": null, "name": "orderBy", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertRenewalOrderByInput", - "ofType": null - } + "kind": "ENUM", + "name": "CallOrderByInput", + "ofType": null } } } @@ -3202,45 +3376,43 @@ { "defaultValue": null, "description": null, - "name": "after", + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "first", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRenewalWhereInput", - "ofType": null - } } ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithCertRenewalsConnection", + "name": "calls", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SmithCertRenewalsConnection", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Call", + "ofType": null + } + } } } }, @@ -3252,7 +3424,7 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "SmithCertRemovalWhereInput", + "name": "EventWhereInput", "ofType": null } }, @@ -3268,7 +3440,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "SmithCertRemovalOrderByInput", + "name": "EventOrderByInput", "ofType": null } } @@ -3298,7 +3470,7 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithCertRemovals", + "name": "events", "type": { "kind": "NON_NULL", "name": null, @@ -3310,87 +3482,228 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithCertRemoval", + "name": "Event", "ofType": null } } } } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Extrinsic", + "possibleTypes": null + }, + { + "description": "The `Boolean` scalar type represents `true` or `false`.", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "Boolean", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "block", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Block", + "ofType": null } - ], + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "extrinsic", + "type": { + "kind": "OBJECT", + "name": "Extrinsic", + "ofType": null + } + }, + { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithCertRemovalById", + "name": "parent", "type": { "kind": "OBJECT", - "name": "SmithCertRemoval", + "name": "Call", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "address", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } } - ], - "deprecationReason": "Use smithCertRemovalById", + } + }, + { + "args": [], + "deprecationReason": null, "description": null, - "isDeprecated": true, - "name": "smithCertRemovalByUniqueInput", + "isDeprecated": false, + "name": "success", "type": { - "kind": "OBJECT", - "name": "SmithCertRemoval", + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "error", + "type": { + "kind": "SCALAR", + "name": "JSON", + "ofType": null + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "pallet", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "args", + "type": { + "kind": "SCALAR", + "name": "JSON", "ofType": null } }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "argsStr", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, { "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", + "ofType": null + } + }, { "defaultValue": null, "description": null, "name": "orderBy", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertRemovalOrderByInput", - "ofType": null - } + "kind": "ENUM", + "name": "CallOrderByInput", + "ofType": null } } } @@ -3398,45 +3711,43 @@ { "defaultValue": null, "description": null, - "name": "after", + "name": "offset", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "first", + "name": "limit", "type": { "kind": "SCALAR", "name": "Int", "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRemovalWhereInput", - "ofType": null - } } ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithCertRemovalsConnection", + "name": "subcalls", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SmithCertRemovalsConnection", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Call", + "ofType": null + } + } } } }, @@ -3448,7 +3759,7 @@ "name": "where", "type": { "kind": "INPUT_OBJECT", - "name": "MembershipWhereInput", + "name": "EventWhereInput", "ofType": null } }, @@ -3464,7 +3775,7 @@ "name": null, "ofType": { "kind": "ENUM", - "name": "MembershipOrderByInput", + "name": "EventOrderByInput", "ofType": null } } @@ -3494,7 +3805,7 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "memberships", + "name": "events", "type": { "kind": "NON_NULL", "name": null, @@ -3506,1524 +3817,615 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "Membership", + "name": "Event", "ofType": null } } } } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Call", + "possibleTypes": null + }, + { + "description": "A scalar that can represent any JSON value", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "JSON", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "id_isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "membershipById", + "name": "id_eq", "type": { - "kind": "OBJECT", - "name": "Membership", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } - } - } - ], - "deprecationReason": "Use membershipById", + "defaultValue": null, "description": null, - "isDeprecated": true, - "name": "membershipByUniqueInput", + "name": "id_not_eq", "type": { - "kind": "OBJECT", - "name": "Membership", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "MembershipOrderByInput", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "after", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "MembershipWhereInput", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "membershipsConnection", + "name": "id_gt", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "MembershipsConnection", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithMembershipWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithMembershipOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "smithMemberships", + "name": "id_gte", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithMembership", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "smithMembershipById", + "name": "id_lt", "type": { - "kind": "OBJECT", - "name": "SmithMembership", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "WhereIdInput", - "ofType": null - } - } - } - ], - "deprecationReason": "Use smithMembershipById", + "defaultValue": null, "description": null, - "isDeprecated": true, - "name": "smithMembershipByUniqueInput", + "name": "id_lte", "type": { - "kind": "OBJECT", - "name": "SmithMembership", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithMembershipOrderByInput", - "ofType": null - } - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "after", - "type": { + "defaultValue": null, + "description": null, + "name": "id_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "String", "ofType": null } - }, - { - "defaultValue": null, - "description": null, - "name": "first", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithMembershipWhereInput", - "ofType": null - } } - ], - "deprecationReason": null, + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "smithMembershipsConnection", + "name": "id_not_in", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SmithMembershipsConnection", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "squidStatus", + "name": "id_contains", "type": { - "kind": "OBJECT", - "name": "SquidStatus", + "kind": "SCALAR", + "name": "String", "ofType": null } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Query", - "possibleTypes": null - }, - { - "description": "The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Int", - "possibleTypes": null - }, - { - "description": "The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "String", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { - "args": [], - "deprecationReason": null, - "description": "BlockHeight-blockHash - e.g. 0001812319-0001c", - "isDeprecated": false, - "name": "id", + "defaultValue": null, + "description": null, + "name": "id_not_contains", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "height", + "name": "id_containsInsensitive", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "hash", + "name": "id_not_containsInsensitive", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parentHash", + "name": "id_startsWith", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "stateRoot", + "name": "id_not_startsWith", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsicsicRoot", + "name": "id_endsWith", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "specName", + "name": "id_not_endsWith", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "specVersion", + "name": "block_isNull", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "implName", + "name": "block", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "BlockWhereInput", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "implVersion", + "name": "extrinsic_isNull", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "timestamp", + "name": "extrinsic", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "DateTime", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "ExtrinsicWhereInput", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "validator", + "name": "parent_isNull", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "Boolean", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsicsCount", + "name": "parent", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "callsCount", + "name": "address_isNull", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "eventsCount", + "name": "address_containsAll", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ExtrinsicOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { "kind": "SCALAR", "name": "Int", "ofType": null } } - ], - "deprecationReason": null, + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsics", + "name": "address_containsAny", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Extrinsic", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CallOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { "kind": "SCALAR", "name": "Int", "ofType": null } } - ], - "deprecationReason": null, + } + }, + { + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "calls", + "name": "address_containsNone", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Call", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "events", + "name": "success_isNull", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Block", - "possibleTypes": null - }, - { - "description": "Binary data encoded as a hex string always prefixed with 0x", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Bytes", - "possibleTypes": null - }, - { - "description": "A date-time string in simplified extended ISO 8601 format (YYYY-MM-DDTHH:mm:ss.sssZ)", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "DateTime", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id", + "name": "success_eq", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block", + "name": "success_not_eq", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "call", + "name": "error_isNull", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Call", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "index", + "name": "error_eq", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "JSON", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "version", + "name": "error_not_eq", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "JSON", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "signature", + "name": "error_jsonContains", "type": { - "kind": "OBJECT", - "name": "ExtrinsicSignature", + "kind": "SCALAR", + "name": "JSON", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "tip", + "name": "error_jsonHasKey", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "JSON", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "fee", + "name": "pallet_isNull", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Boolean", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "success", + "name": "pallet_eq", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "error", + "name": "pallet_not_eq", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "hash", + "name": "pallet_gt", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CallOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "calls", + "name": "pallet_gte", "type": { - "kind": "NON_NULL", + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "pallet_lt", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "pallet_lte", + "type": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "pallet_in", + "type": { + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Call", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "events", + "name": "pallet_not_in", "type": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Extrinsic", - "possibleTypes": null - }, - { - "description": "The `Boolean` scalar type represents `true` or `false`.", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "Boolean", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "id", + "name": "pallet_contains", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "block", + "name": "pallet_not_contains", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Block", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "extrinsic", + "name": "pallet_containsInsensitive", "type": { - "kind": "OBJECT", - "name": "Extrinsic", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "parent", + "name": "pallet_not_containsInsensitive", "type": { - "kind": "OBJECT", - "name": "Call", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "address", + "name": "pallet_startsWith", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "success", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "error", + "name": "pallet_not_startsWith", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "pallet", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "args", + "name": "pallet_endsWith", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "argsStr", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CallOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, + "defaultValue": null, "description": null, - "isDeprecated": false, - "name": "subcalls", + "name": "pallet_not_endsWith", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Call", - "ofType": null - } - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "EventOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "events", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Event", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Call", - "possibleTypes": null - }, - { - "description": "A scalar that can represent any JSON value", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "JSON", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ { "defaultValue": null, "description": null, - "name": "id_isNull", + "name": "name_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -5033,7 +4435,7 @@ { "defaultValue": null, "description": null, - "name": "id_eq", + "name": "name_eq", "type": { "kind": "SCALAR", "name": "String", @@ -5043,7 +4445,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_eq", + "name": "name_not_eq", "type": { "kind": "SCALAR", "name": "String", @@ -5053,7 +4455,7 @@ { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "name_gt", "type": { "kind": "SCALAR", "name": "String", @@ -5063,7 +4465,7 @@ { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "name_gte", "type": { "kind": "SCALAR", "name": "String", @@ -5073,7 +4475,7 @@ { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "name_lt", "type": { "kind": "SCALAR", "name": "String", @@ -5083,7 +4485,7 @@ { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "name_lte", "type": { "kind": "SCALAR", "name": "String", @@ -5093,7 +4495,7 @@ { "defaultValue": null, "description": null, - "name": "id_in", + "name": "name_in", "type": { "kind": "LIST", "name": null, @@ -5111,7 +4513,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "name_not_in", "type": { "kind": "LIST", "name": null, @@ -5129,7 +4531,7 @@ { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "name_contains", "type": { "kind": "SCALAR", "name": "String", @@ -5139,7 +4541,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "name_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -5149,7 +4551,7 @@ { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "name_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -5159,7 +4561,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "name_not_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -5169,7 +4571,7 @@ { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "name_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -5179,7 +4581,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "name_not_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -5189,7 +4591,7 @@ { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "name_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -5199,7 +4601,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "name_not_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -5209,7 +4611,7 @@ { "defaultValue": null, "description": null, - "name": "block_isNull", + "name": "args_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -5219,57 +4621,47 @@ { "defaultValue": null, "description": null, - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "extrinsic_isNull", + "name": "args_eq", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsic", + "name": "args_not_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "kind": "SCALAR", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "parent_isNull", + "name": "args_jsonContains", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "parent", + "name": "args_jsonHasKey", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "SCALAR", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "address_isNull", + "name": "argsStr_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -5279,141 +4671,156 @@ { "defaultValue": null, "description": null, - "name": "address_containsAll", + "name": "argsStr_containsAll", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, { "defaultValue": null, "description": null, - "name": "address_containsAny", + "name": "argsStr_containsAny", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, { "defaultValue": null, "description": null, - "name": "address_containsNone", + "name": "argsStr_containsNone", "type": { "kind": "LIST", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "SCALAR", + "name": "String", + "ofType": null } } }, { "defaultValue": null, "description": null, - "name": "success_isNull", + "name": "subcalls_every", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "success_eq", + "name": "subcalls_some", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "success_not_eq", + "name": "subcalls_none", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_isNull", + "name": "events_every", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_eq", + "name": "events_some", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_not_eq", + "name": "events_none", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_jsonContains", + "name": "AND", "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "error_jsonHasKey", + "name": "OR", "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", + "ofType": null + } + } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "pallet_isNull", + "name": "id_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -5423,7 +4830,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_eq", + "name": "id_eq", "type": { "kind": "SCALAR", "name": "String", @@ -5433,7 +4840,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_eq", + "name": "id_not_eq", "type": { "kind": "SCALAR", "name": "String", @@ -5443,7 +4850,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_gt", + "name": "id_gt", "type": { "kind": "SCALAR", "name": "String", @@ -5453,7 +4860,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_gte", + "name": "id_gte", "type": { "kind": "SCALAR", "name": "String", @@ -5463,7 +4870,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_lt", + "name": "id_lt", "type": { "kind": "SCALAR", "name": "String", @@ -5473,7 +4880,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_lte", + "name": "id_lte", "type": { "kind": "SCALAR", "name": "String", @@ -5483,7 +4890,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_in", + "name": "id_in", "type": { "kind": "LIST", "name": null, @@ -5501,7 +4908,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_in", + "name": "id_not_in", "type": { "kind": "LIST", "name": null, @@ -5519,7 +4926,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_contains", + "name": "id_contains", "type": { "kind": "SCALAR", "name": "String", @@ -5529,7 +4936,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_contains", + "name": "id_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -5539,7 +4946,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_containsInsensitive", + "name": "id_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -5549,7 +4956,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_containsInsensitive", + "name": "id_not_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -5559,7 +4966,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_startsWith", + "name": "id_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -5569,7 +4976,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_startsWith", + "name": "id_not_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -5579,7 +4986,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_endsWith", + "name": "id_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -5589,7 +4996,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_endsWith", + "name": "id_not_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -5599,7 +5006,7 @@ { "defaultValue": null, "description": null, - "name": "name_isNull", + "name": "height_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -5609,67 +5016,67 @@ { "defaultValue": null, "description": null, - "name": "name_eq", + "name": "height_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_not_eq", + "name": "height_not_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_gt", + "name": "height_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_gte", + "name": "height_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_lt", + "name": "height_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_lte", + "name": "height_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_in", + "name": "height_in", "type": { "kind": "LIST", "name": null, @@ -5678,7 +5085,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -5687,7 +5094,7 @@ { "defaultValue": null, "description": null, - "name": "name_not_in", + "name": "height_not_in", "type": { "kind": "LIST", "name": null, @@ -5696,7 +5103,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -5705,87 +5112,67 @@ { "defaultValue": null, "description": null, - "name": "name_contains", + "name": "hash_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_not_contains", + "name": "hash_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_containsInsensitive", + "name": "hash_not_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_not_containsInsensitive", + "name": "parentHash_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name_not_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name_endsWith", + "name": "parentHash_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_not_endsWith", + "name": "parentHash_not_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "args_isNull", + "name": "stateRoot_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -5795,206 +5182,57 @@ { "defaultValue": null, "description": null, - "name": "args_eq", + "name": "stateRoot_eq", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "args_not_eq", + "name": "stateRoot_not_eq", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "args_jsonContains", + "name": "extrinsicsicRoot_isNull", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "args_jsonHasKey", + "name": "extrinsicsicRoot_eq", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "argsStr_isNull", + "name": "extrinsicsicRoot_not_eq", "type": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "argsStr_containsAll", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "argsStr_containsAny", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "argsStr_containsNone", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "subcalls_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "subcalls_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "subcalls_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "events_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "events_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "events_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id_isNull", + "name": "specName_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -6004,7 +5242,7 @@ { "defaultValue": null, "description": null, - "name": "id_eq", + "name": "specName_eq", "type": { "kind": "SCALAR", "name": "String", @@ -6014,7 +5252,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_eq", + "name": "specName_not_eq", "type": { "kind": "SCALAR", "name": "String", @@ -6024,7 +5262,7 @@ { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "specName_gt", "type": { "kind": "SCALAR", "name": "String", @@ -6034,7 +5272,7 @@ { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "specName_gte", "type": { "kind": "SCALAR", "name": "String", @@ -6044,7 +5282,7 @@ { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "specName_lt", "type": { "kind": "SCALAR", "name": "String", @@ -6054,7 +5292,7 @@ { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "specName_lte", "type": { "kind": "SCALAR", "name": "String", @@ -6064,7 +5302,7 @@ { "defaultValue": null, "description": null, - "name": "id_in", + "name": "specName_in", "type": { "kind": "LIST", "name": null, @@ -6082,7 +5320,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "specName_not_in", "type": { "kind": "LIST", "name": null, @@ -6100,7 +5338,7 @@ { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "specName_contains", "type": { "kind": "SCALAR", "name": "String", @@ -6110,7 +5348,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "specName_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -6120,7 +5358,7 @@ { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "specName_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -6130,7 +5368,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "specName_not_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -6140,7 +5378,7 @@ { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "specName_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -6150,7 +5388,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "specName_not_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -6160,7 +5398,7 @@ { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "specName_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -6170,7 +5408,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "specName_not_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -6180,7 +5418,7 @@ { "defaultValue": null, "description": null, - "name": "height_isNull", + "name": "specVersion_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -6190,7 +5428,7 @@ { "defaultValue": null, "description": null, - "name": "height_eq", + "name": "specVersion_eq", "type": { "kind": "SCALAR", "name": "Int", @@ -6200,7 +5438,7 @@ { "defaultValue": null, "description": null, - "name": "height_not_eq", + "name": "specVersion_not_eq", "type": { "kind": "SCALAR", "name": "Int", @@ -6210,7 +5448,7 @@ { "defaultValue": null, "description": null, - "name": "height_gt", + "name": "specVersion_gt", "type": { "kind": "SCALAR", "name": "Int", @@ -6220,7 +5458,7 @@ { "defaultValue": null, "description": null, - "name": "height_gte", + "name": "specVersion_gte", "type": { "kind": "SCALAR", "name": "Int", @@ -6230,7 +5468,7 @@ { "defaultValue": null, "description": null, - "name": "height_lt", + "name": "specVersion_lt", "type": { "kind": "SCALAR", "name": "Int", @@ -6240,7 +5478,7 @@ { "defaultValue": null, "description": null, - "name": "height_lte", + "name": "specVersion_lte", "type": { "kind": "SCALAR", "name": "Int", @@ -6250,7 +5488,7 @@ { "defaultValue": null, "description": null, - "name": "height_in", + "name": "specVersion_in", "type": { "kind": "LIST", "name": null, @@ -6268,7 +5506,7 @@ { "defaultValue": null, "description": null, - "name": "height_not_in", + "name": "specVersion_not_in", "type": { "kind": "LIST", "name": null, @@ -6286,7 +5524,7 @@ { "defaultValue": null, "description": null, - "name": "hash_isNull", + "name": "implName_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -6296,127 +5534,7 @@ { "defaultValue": null, "description": null, - "name": "hash_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "hash_not_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "parentHash_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "parentHash_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "parentHash_not_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stateRoot_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stateRoot_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "stateRoot_not_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "extrinsicsicRoot_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "extrinsicsicRoot_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "extrinsicsicRoot_not_eq", - "type": { - "kind": "SCALAR", - "name": "Bytes", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "specName_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "specName_eq", + "name": "implName_eq", "type": { "kind": "SCALAR", "name": "String", @@ -6426,7 +5544,7 @@ { "defaultValue": null, "description": null, - "name": "specName_not_eq", + "name": "implName_not_eq", "type": { "kind": "SCALAR", "name": "String", @@ -6436,7 +5554,7 @@ { "defaultValue": null, "description": null, - "name": "specName_gt", + "name": "implName_gt", "type": { "kind": "SCALAR", "name": "String", @@ -6446,7 +5564,7 @@ { "defaultValue": null, "description": null, - "name": "specName_gte", + "name": "implName_gte", "type": { "kind": "SCALAR", "name": "String", @@ -6456,7 +5574,7 @@ { "defaultValue": null, "description": null, - "name": "specName_lt", + "name": "implName_lt", "type": { "kind": "SCALAR", "name": "String", @@ -6466,7 +5584,7 @@ { "defaultValue": null, "description": null, - "name": "specName_lte", + "name": "implName_lte", "type": { "kind": "SCALAR", "name": "String", @@ -6476,7 +5594,7 @@ { "defaultValue": null, "description": null, - "name": "specName_in", + "name": "implName_in", "type": { "kind": "LIST", "name": null, @@ -6494,7 +5612,7 @@ { "defaultValue": null, "description": null, - "name": "specName_not_in", + "name": "implName_not_in", "type": { "kind": "LIST", "name": null, @@ -6512,7 +5630,7 @@ { "defaultValue": null, "description": null, - "name": "specName_contains", + "name": "implName_contains", "type": { "kind": "SCALAR", "name": "String", @@ -6522,7 +5640,7 @@ { "defaultValue": null, "description": null, - "name": "specName_not_contains", + "name": "implName_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -6532,7 +5650,7 @@ { "defaultValue": null, "description": null, - "name": "specName_containsInsensitive", + "name": "implName_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -6542,7 +5660,7 @@ { "defaultValue": null, "description": null, - "name": "specName_not_containsInsensitive", + "name": "implName_not_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -6552,7 +5670,7 @@ { "defaultValue": null, "description": null, - "name": "specName_startsWith", + "name": "implName_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -6562,7 +5680,7 @@ { "defaultValue": null, "description": null, - "name": "specName_not_startsWith", + "name": "implName_not_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -6572,7 +5690,7 @@ { "defaultValue": null, "description": null, - "name": "specName_endsWith", + "name": "implName_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -6582,7 +5700,7 @@ { "defaultValue": null, "description": null, - "name": "specName_not_endsWith", + "name": "implName_not_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -6592,7 +5710,7 @@ { "defaultValue": null, "description": null, - "name": "specVersion_isNull", + "name": "implVersion_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -6602,7 +5720,7 @@ { "defaultValue": null, "description": null, - "name": "specVersion_eq", + "name": "implVersion_eq", "type": { "kind": "SCALAR", "name": "Int", @@ -6612,7 +5730,7 @@ { "defaultValue": null, "description": null, - "name": "specVersion_not_eq", + "name": "implVersion_not_eq", "type": { "kind": "SCALAR", "name": "Int", @@ -6622,7 +5740,7 @@ { "defaultValue": null, "description": null, - "name": "specVersion_gt", + "name": "implVersion_gt", "type": { "kind": "SCALAR", "name": "Int", @@ -6632,7 +5750,7 @@ { "defaultValue": null, "description": null, - "name": "specVersion_gte", + "name": "implVersion_gte", "type": { "kind": "SCALAR", "name": "Int", @@ -6642,7 +5760,7 @@ { "defaultValue": null, "description": null, - "name": "specVersion_lt", + "name": "implVersion_lt", "type": { "kind": "SCALAR", "name": "Int", @@ -6652,7 +5770,7 @@ { "defaultValue": null, "description": null, - "name": "specVersion_lte", + "name": "implVersion_lte", "type": { "kind": "SCALAR", "name": "Int", @@ -6662,7 +5780,7 @@ { "defaultValue": null, "description": null, - "name": "specVersion_in", + "name": "implVersion_in", "type": { "kind": "LIST", "name": null, @@ -6680,7 +5798,7 @@ { "defaultValue": null, "description": null, - "name": "specVersion_not_in", + "name": "implVersion_not_in", "type": { "kind": "LIST", "name": null, @@ -6698,7 +5816,7 @@ { "defaultValue": null, "description": null, - "name": "implName_isNull", + "name": "timestamp_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -6708,67 +5826,67 @@ { "defaultValue": null, "description": null, - "name": "implName_eq", + "name": "timestamp_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_not_eq", + "name": "timestamp_not_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_gt", + "name": "timestamp_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_gte", + "name": "timestamp_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_lt", + "name": "timestamp_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_lte", + "name": "timestamp_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_in", + "name": "timestamp_in", "type": { "kind": "LIST", "name": null, @@ -6777,7 +5895,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } @@ -6786,7 +5904,7 @@ { "defaultValue": null, "description": null, - "name": "implName_not_in", + "name": "timestamp_not_in", "type": { "kind": "LIST", "name": null, @@ -6795,7 +5913,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "DateTime", "ofType": null } } @@ -6804,97 +5922,97 @@ { "defaultValue": null, "description": null, - "name": "implName_contains", + "name": "validator_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_not_contains", + "name": "validator_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_containsInsensitive", + "name": "validator_not_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_not_containsInsensitive", + "name": "extrinsicsCount_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_startsWith", + "name": "extrinsicsCount_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_not_startsWith", + "name": "extrinsicsCount_not_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_endsWith", + "name": "extrinsicsCount_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implName_not_endsWith", + "name": "extrinsicsCount_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implVersion_isNull", + "name": "extrinsicsCount_lt", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "implVersion_eq", + "name": "extrinsicsCount_lte", "type": { "kind": "SCALAR", "name": "Int", @@ -6904,17 +6022,53 @@ { "defaultValue": null, "description": null, - "name": "implVersion_not_eq", + "name": "extrinsicsCount_in", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "implVersion_gt", + "name": "extrinsicsCount_not_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "callsCount_isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "callsCount_eq", "type": { "kind": "SCALAR", "name": "Int", @@ -6924,7 +6078,7 @@ { "defaultValue": null, "description": null, - "name": "implVersion_gte", + "name": "callsCount_not_eq", "type": { "kind": "SCALAR", "name": "Int", @@ -6934,7 +6088,7 @@ { "defaultValue": null, "description": null, - "name": "implVersion_lt", + "name": "callsCount_gt", "type": { "kind": "SCALAR", "name": "Int", @@ -6944,7 +6098,7 @@ { "defaultValue": null, "description": null, - "name": "implVersion_lte", + "name": "callsCount_gte", "type": { "kind": "SCALAR", "name": "Int", @@ -6954,7 +6108,27 @@ { "defaultValue": null, "description": null, - "name": "implVersion_in", + "name": "callsCount_lt", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "callsCount_lte", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "callsCount_in", "type": { "kind": "LIST", "name": null, @@ -6972,7 +6146,7 @@ { "defaultValue": null, "description": null, - "name": "implVersion_not_in", + "name": "callsCount_not_in", "type": { "kind": "LIST", "name": null, @@ -6990,7 +6164,7 @@ { "defaultValue": null, "description": null, - "name": "timestamp_isNull", + "name": "eventsCount_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -7000,67 +6174,67 @@ { "defaultValue": null, "description": null, - "name": "timestamp_eq", + "name": "eventsCount_eq", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_not_eq", + "name": "eventsCount_not_eq", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_gt", + "name": "eventsCount_gt", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_gte", + "name": "eventsCount_gte", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_lt", + "name": "eventsCount_lt", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_lte", + "name": "eventsCount_lte", "type": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "timestamp_in", + "name": "eventsCount_in", "type": { "kind": "LIST", "name": null, @@ -7069,7 +6243,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } } @@ -7078,7 +6252,7 @@ { "defaultValue": null, "description": null, - "name": "timestamp_not_in", + "name": "eventsCount_not_in", "type": { "kind": "LIST", "name": null, @@ -7087,7 +6261,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "DateTime", + "name": "Int", "ofType": null } } @@ -7096,107 +6270,97 @@ { "defaultValue": null, "description": null, - "name": "validator_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "validator_eq", + "name": "extrinsics_every", "type": { - "kind": "SCALAR", - "name": "Bytes", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "validator_not_eq", + "name": "extrinsics_some", "type": { - "kind": "SCALAR", - "name": "Bytes", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_isNull", + "name": "extrinsics_none", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_eq", + "name": "calls_every", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_not_eq", + "name": "calls_some", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_gt", + "name": "calls_none", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_gte", + "name": "events_every", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_lt", + "name": "events_some", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_lte", + "name": "events_none", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsicsCount_in", + "name": "AND", "type": { "kind": "LIST", "name": null, @@ -7204,8 +6368,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BlockWhereInput", "ofType": null } } @@ -7214,7 +6378,7 @@ { "defaultValue": null, "description": null, - "name": "extrinsicsCount_not_in", + "name": "OR", "type": { "kind": "LIST", "name": null, @@ -7222,17 +6386,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "BlockWhereInput", "ofType": null } } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "BlockWhereInput", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "callsCount_isNull", + "name": "id_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -7242,67 +6417,67 @@ { "defaultValue": null, "description": null, - "name": "callsCount_eq", + "name": "id_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "callsCount_not_eq", + "name": "id_not_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "callsCount_gt", + "name": "id_gt", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "callsCount_gte", + "name": "id_gte", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "callsCount_lt", + "name": "id_lt", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "callsCount_lte", + "name": "id_lte", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "callsCount_in", + "name": "id_in", "type": { "kind": "LIST", "name": null, @@ -7311,7 +6486,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -7320,7 +6495,7 @@ { "defaultValue": null, "description": null, - "name": "callsCount_not_in", + "name": "id_not_in", "type": { "kind": "LIST", "name": null, @@ -7329,7 +6504,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -7338,203 +6513,197 @@ { "defaultValue": null, "description": null, - "name": "eventsCount_isNull", + "name": "id_contains", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_eq", + "name": "id_not_contains", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_not_eq", + "name": "id_containsInsensitive", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_gt", + "name": "id_not_containsInsensitive", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_gte", + "name": "id_startsWith", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_lt", + "name": "id_not_startsWith", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_lte", + "name": "id_endsWith", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_in", + "name": "id_not_endsWith", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "String", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "eventsCount_not_in", + "name": "block_isNull", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsics_every", + "name": "block", "type": { "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "name": "BlockWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsics_some", + "name": "call_isNull", "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsics_none", + "name": "call", "type": { "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "name": "CallWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "calls_every", + "name": "index_isNull", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "calls_some", + "name": "index_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "calls_none", + "name": "index_not_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "events_every", + "name": "index_gt", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "events_some", + "name": "index_gte", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "events_none", + "name": "index_lt", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", + "name": "index_lte", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "index_in", "type": { "kind": "LIST", "name": null, @@ -7542,8 +6711,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -7552,7 +6721,7 @@ { "defaultValue": null, "description": null, - "name": "OR", + "name": "index_not_in", "type": { "kind": "LIST", "name": null, @@ -7560,28 +6729,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ + }, { "defaultValue": null, "description": null, - "name": "id_isNull", + "name": "version_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -7591,67 +6749,67 @@ { "defaultValue": null, "description": null, - "name": "id_eq", + "name": "version_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_eq", + "name": "version_not_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "version_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "version_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "version_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "version_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_in", + "name": "version_in", "type": { "kind": "LIST", "name": null, @@ -7660,7 +6818,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -7669,7 +6827,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "version_not_in", "type": { "kind": "LIST", "name": null, @@ -7678,7 +6836,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -7687,127 +6845,133 @@ { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "signature_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "signature", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicSignatureWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "tip_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "tip_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "tip_not_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "tip_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "tip_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "tip_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "block_isNull", + "name": "tip_lte", "type": { "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "block", - "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "call_isNull", + "name": "tip_in", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "call", + "name": "tip_not_in", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "BigInt", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "index_isNull", + "name": "fee_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -7817,67 +6981,67 @@ { "defaultValue": null, "description": null, - "name": "index_eq", + "name": "fee_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_not_eq", + "name": "fee_not_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_gt", + "name": "fee_gt", "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_gte", + "name": "fee_gte", "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_lt", + "name": "fee_lt", "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_lte", + "name": "fee_lte", "type": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_in", + "name": "fee_in", "type": { "kind": "LIST", "name": null, @@ -7886,7 +7050,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -7895,7 +7059,7 @@ { "defaultValue": null, "description": null, - "name": "index_not_in", + "name": "fee_not_in", "type": { "kind": "LIST", "name": null, @@ -7904,7 +7068,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "BigInt", "ofType": null } } @@ -7913,7 +7077,7 @@ { "defaultValue": null, "description": null, - "name": "version_isNull", + "name": "success_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -7923,103 +7087,77 @@ { "defaultValue": null, "description": null, - "name": "version_eq", + "name": "success_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "version_not_eq", + "name": "success_not_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "version_gt", + "name": "error_isNull", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "version_gte", + "name": "error_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "version_lt", + "name": "error_not_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "version_lte", + "name": "error_jsonContains", "type": { "kind": "SCALAR", - "name": "Int", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "version_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "version_not_in", + "name": "error_jsonHasKey", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "kind": "SCALAR", + "name": "JSON", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signature_isNull", + "name": "hash_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -8029,87 +7167,87 @@ { "defaultValue": null, "description": null, - "name": "signature", + "name": "hash_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicSignatureWhereInput", + "kind": "SCALAR", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_isNull", + "name": "hash_not_eq", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Bytes", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_eq", + "name": "calls_every", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_not_eq", + "name": "calls_some", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_gt", + "name": "calls_none", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_gte", + "name": "events_every", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_lt", + "name": "events_some", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_lte", + "name": "events_none", "type": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "tip_in", + "name": "AND", "type": { "kind": "LIST", "name": null, @@ -8117,8 +7255,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicWhereInput", "ofType": null } } @@ -8127,7 +7265,7 @@ { "defaultValue": null, "description": null, - "name": "tip_not_in", + "name": "OR", "type": { "kind": "LIST", "name": null, @@ -8135,17 +7273,28 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "BigInt", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicWhereInput", "ofType": null } } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicWhereInput", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "fee_isNull", + "name": "address_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -8155,113 +7304,97 @@ { "defaultValue": null, "description": null, - "name": "fee_eq", + "name": "address_eq", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_not_eq", + "name": "address_not_eq", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_gt", + "name": "address_jsonContains", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_gte", + "name": "address_jsonHasKey", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_lt", + "name": "signature_isNull", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_lte", + "name": "signature_eq", "type": { "kind": "SCALAR", - "name": "BigInt", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_in", + "name": "signature_not_eq", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "JSON", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "fee_not_in", + "name": "signature_jsonContains", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "BigInt", - "ofType": null - } - } + "kind": "SCALAR", + "name": "JSON", + "ofType": null } }, { "defaultValue": null, "description": null, - "name": "success_isNull", + "name": "signature_jsonHasKey", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "success_eq", + "name": "signedExtensions_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -8271,27 +7404,27 @@ { "defaultValue": null, "description": null, - "name": "success_not_eq", + "name": "signedExtensions_eq", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_isNull", + "name": "signedExtensions_not_eq", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_eq", + "name": "signedExtensions_jsonContains", "type": { "kind": "SCALAR", "name": "JSON", @@ -8301,127 +7434,108 @@ { "defaultValue": null, "description": null, - "name": "error_not_eq", + "name": "signedExtensions_jsonHasKey", "type": { "kind": "SCALAR", "name": "JSON", "ofType": null } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "ExtrinsicSignatureWhereInput", + "possibleTypes": null + }, + { + "description": "Big number integer", + "enumValues": null, + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "SCALAR", + "name": "BigInt", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "error_jsonContains", + "name": "id_isNull", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "error_jsonHasKey", + "name": "id_eq", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "hash_isNull", + "name": "id_not_eq", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "hash_eq", + "name": "id_gt", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "hash_not_eq", + "name": "id_gte", "type": { "kind": "SCALAR", - "name": "Bytes", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "calls_every", + "name": "id_lt", "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "calls_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "calls_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "events_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "events_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "events_none", + "name": "id_lte", "type": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", + "name": "id_in", "type": { "kind": "LIST", "name": null, @@ -8429,8 +7543,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -8439,7 +7553,7 @@ { "defaultValue": null, "description": null, - "name": "OR", + "name": "id_not_in", "type": { "kind": "LIST", "name": null, @@ -8447,128 +7561,117 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ + }, { "defaultValue": null, "description": null, - "name": "address_isNull", + "name": "id_contains", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "address_eq", + "name": "id_not_contains", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "address_not_eq", + "name": "id_containsInsensitive", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "address_jsonContains", + "name": "id_not_containsInsensitive", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "address_jsonHasKey", + "name": "id_startsWith", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signature_isNull", + "name": "id_not_startsWith", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signature_eq", + "name": "id_endsWith", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signature_not_eq", + "name": "id_not_endsWith", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signature_jsonContains", + "name": "block_isNull", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signature_jsonHasKey", + "name": "block", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "BlockWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signedExtensions_isNull", + "name": "extrinsic_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -8578,68 +7681,37 @@ { "defaultValue": null, "description": null, - "name": "signedExtensions_eq", + "name": "extrinsic", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "ExtrinsicWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signedExtensions_not_eq", + "name": "call_isNull", "type": { "kind": "SCALAR", - "name": "JSON", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signedExtensions_jsonContains", + "name": "call", "type": { - "kind": "SCALAR", - "name": "JSON", + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "signedExtensions_jsonHasKey", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "ExtrinsicSignatureWhereInput", - "possibleTypes": null - }, - { - "description": "Big number integer", - "enumValues": null, - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "SCALAR", - "name": "BigInt", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id_isNull", + "name": "index_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -8649,67 +7721,67 @@ { "defaultValue": null, "description": null, - "name": "id_eq", + "name": "index_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_eq", + "name": "index_not_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "index_gt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "index_gte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "index_lt", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "index_lte", "type": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_in", + "name": "index_in", "type": { "kind": "LIST", "name": null, @@ -8718,7 +7790,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -8727,7 +7799,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "index_not_in", "type": { "kind": "LIST", "name": null, @@ -8736,7 +7808,7 @@ "name": null, "ofType": { "kind": "SCALAR", - "name": "String", + "name": "Int", "ofType": null } } @@ -8745,17 +7817,17 @@ { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "phase_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "phase_eq", "type": { "kind": "SCALAR", "name": "String", @@ -8765,7 +7837,7 @@ { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "phase_not_eq", "type": { "kind": "SCALAR", "name": "String", @@ -8775,7 +7847,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "phase_gt", "type": { "kind": "SCALAR", "name": "String", @@ -8785,7 +7857,7 @@ { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "phase_gte", "type": { "kind": "SCALAR", "name": "String", @@ -8795,7 +7867,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "phase_lt", "type": { "kind": "SCALAR", "name": "String", @@ -8805,7 +7877,7 @@ { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "phase_lte", "type": { "kind": "SCALAR", "name": "String", @@ -8815,183 +7887,123 @@ { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "phase_in", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "block_isNull", + "name": "phase_not_in", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "block", + "name": "phase_contains", "type": { - "kind": "INPUT_OBJECT", - "name": "BlockWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsic_isNull", + "name": "phase_not_contains", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "extrinsic", - "type": { - "kind": "INPUT_OBJECT", - "name": "ExtrinsicWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "call_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "call", - "type": { - "kind": "INPUT_OBJECT", - "name": "CallWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "index_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "index_eq", + "name": "phase_containsInsensitive", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_not_eq", + "name": "phase_not_containsInsensitive", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_gt", + "name": "phase_startsWith", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_gte", + "name": "phase_not_startsWith", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_lt", + "name": "phase_endsWith", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_lte", + "name": "phase_not_endsWith", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "index_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "index_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "phase_isNull", + "name": "pallet_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -9001,7 +8013,7 @@ { "defaultValue": null, "description": null, - "name": "phase_eq", + "name": "pallet_eq", "type": { "kind": "SCALAR", "name": "String", @@ -9011,7 +8023,7 @@ { "defaultValue": null, "description": null, - "name": "phase_not_eq", + "name": "pallet_not_eq", "type": { "kind": "SCALAR", "name": "String", @@ -9021,7 +8033,7 @@ { "defaultValue": null, "description": null, - "name": "phase_gt", + "name": "pallet_gt", "type": { "kind": "SCALAR", "name": "String", @@ -9031,7 +8043,7 @@ { "defaultValue": null, "description": null, - "name": "phase_gte", + "name": "pallet_gte", "type": { "kind": "SCALAR", "name": "String", @@ -9041,7 +8053,7 @@ { "defaultValue": null, "description": null, - "name": "phase_lt", + "name": "pallet_lt", "type": { "kind": "SCALAR", "name": "String", @@ -9051,7 +8063,7 @@ { "defaultValue": null, "description": null, - "name": "phase_lte", + "name": "pallet_lte", "type": { "kind": "SCALAR", "name": "String", @@ -9061,7 +8073,7 @@ { "defaultValue": null, "description": null, - "name": "phase_in", + "name": "pallet_in", "type": { "kind": "LIST", "name": null, @@ -9079,7 +8091,7 @@ { "defaultValue": null, "description": null, - "name": "phase_not_in", + "name": "pallet_not_in", "type": { "kind": "LIST", "name": null, @@ -9097,7 +8109,7 @@ { "defaultValue": null, "description": null, - "name": "phase_contains", + "name": "pallet_contains", "type": { "kind": "SCALAR", "name": "String", @@ -9107,7 +8119,7 @@ { "defaultValue": null, "description": null, - "name": "phase_not_contains", + "name": "pallet_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -9117,7 +8129,7 @@ { "defaultValue": null, "description": null, - "name": "phase_containsInsensitive", + "name": "pallet_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -9127,7 +8139,7 @@ { "defaultValue": null, "description": null, - "name": "phase_not_containsInsensitive", + "name": "pallet_not_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -9137,7 +8149,7 @@ { "defaultValue": null, "description": null, - "name": "phase_startsWith", + "name": "pallet_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -9147,7 +8159,7 @@ { "defaultValue": null, "description": null, - "name": "phase_not_startsWith", + "name": "pallet_not_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -9157,7 +8169,7 @@ { "defaultValue": null, "description": null, - "name": "phase_endsWith", + "name": "pallet_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -9167,7 +8179,7 @@ { "defaultValue": null, "description": null, - "name": "phase_not_endsWith", + "name": "pallet_not_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -9177,7 +8189,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_isNull", + "name": "name_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -9187,7 +8199,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_eq", + "name": "name_eq", "type": { "kind": "SCALAR", "name": "String", @@ -9197,7 +8209,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_eq", + "name": "name_not_eq", "type": { "kind": "SCALAR", "name": "String", @@ -9207,7 +8219,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_gt", + "name": "name_gt", "type": { "kind": "SCALAR", "name": "String", @@ -9217,7 +8229,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_gte", + "name": "name_gte", "type": { "kind": "SCALAR", "name": "String", @@ -9227,7 +8239,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_lt", + "name": "name_lt", "type": { "kind": "SCALAR", "name": "String", @@ -9237,7 +8249,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_lte", + "name": "name_lte", "type": { "kind": "SCALAR", "name": "String", @@ -9247,7 +8259,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_in", + "name": "name_in", "type": { "kind": "LIST", "name": null, @@ -9265,7 +8277,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_in", + "name": "name_not_in", "type": { "kind": "LIST", "name": null, @@ -9283,7 +8295,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_contains", + "name": "name_contains", "type": { "kind": "SCALAR", "name": "String", @@ -9293,7 +8305,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_contains", + "name": "name_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -9303,7 +8315,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_containsInsensitive", + "name": "name_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -9313,7 +8325,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_containsInsensitive", + "name": "name_not_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -9323,7 +8335,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_startsWith", + "name": "name_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -9333,7 +8345,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_startsWith", + "name": "name_not_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -9343,7 +8355,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_endsWith", + "name": "name_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -9353,7 +8365,7 @@ { "defaultValue": null, "description": null, - "name": "pallet_not_endsWith", + "name": "name_not_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -9363,7 +8375,7 @@ { "defaultValue": null, "description": null, - "name": "name_isNull", + "name": "args_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -9373,67 +8385,99 @@ { "defaultValue": null, "description": null, - "name": "name_eq", + "name": "args_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_not_eq", + "name": "args_not_eq", "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_gt", + "name": "args_jsonContains", "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_gte", + "name": "args_jsonHasKey", "type": { "kind": "SCALAR", - "name": "String", + "name": "JSON", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_lt", + "name": "argsStr_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "name_lte", + "name": "argsStr_containsAll", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, { "defaultValue": null, "description": null, - "name": "name_in", + "name": "argsStr_containsAny", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "argsStr_containsNone", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "AND", "type": { "kind": "LIST", "name": null, @@ -9441,8 +8485,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } } @@ -9451,7 +8495,7 @@ { "defaultValue": null, "description": null, - "name": "name_not_in", + "name": "OR", "type": { "kind": "LIST", "name": null, @@ -9459,248 +8503,30 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } } } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id_ASC" }, { - "defaultValue": null, - "description": null, - "name": "name_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name_not_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name_not_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "name_not_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "args_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "args_eq", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "args_not_eq", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "args_jsonContains", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "args_jsonHasKey", - "type": { - "kind": "SCALAR", - "name": "JSON", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "argsStr_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "argsStr_containsAll", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "argsStr_containsAny", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "argsStr_containsNone", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "ofType": null - } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "EventWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC" - }, - { - "deprecationReason": null, + "deprecationReason": null, "description": null, "isDeprecated": false, "name": "id_DESC" @@ -15784,147 +14610,179 @@ { "defaultValue": null, "description": null, - "name": "certIssued_every", + "name": "status_isNull", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "certIssued_some", + "name": "status_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "kind": "ENUM", + "name": "IdentityStatus", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "certIssued_none", + "name": "status_not_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "kind": "ENUM", + "name": "IdentityStatus", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "certReceived_every", + "name": "status_in", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "certReceived_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IdentityStatus", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "certReceived_none", + "name": "status_not_in", "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IdentityStatus", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "smithCertIssued_every", + "name": "createdOn_isNull", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "smithCertIssued_some", + "name": "createdOn_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "smithCertIssued_none", + "name": "createdOn_not_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "smithCertReceived_every", + "name": "createdOn_gt", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "smithCertReceived_some", + "name": "createdOn_gte", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "smithCertReceived_none", + "name": "createdOn_lt", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "membership_isNull", + "name": "createdOn_lte", "type": { "kind": "SCALAR", - "name": "Boolean", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "membership", + "name": "createdOn_in", "type": { - "kind": "INPUT_OBJECT", - "name": "MembershipWhereInput", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdOn_not_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "smithMembership_isNull", + "name": "createdIn_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -15934,77 +14792,87 @@ { "defaultValue": null, "description": null, - "name": "smithMembership", + "name": "createdIn", "type": { "kind": "INPUT_OBJECT", - "name": "SmithMembershipWhereInput", + "name": "EventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "ownerKeyChange_every", + "name": "lastChangeOn_isNull", "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", + "kind": "SCALAR", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "ownerKeyChange_some", + "name": "lastChangeOn_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "ownerKeyChange_none", + "name": "lastChangeOn_not_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "linkedAccount_every", + "name": "lastChangeOn_gt", "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "linkedAccount_some", + "name": "lastChangeOn_gte", "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "linkedAccount_none", + "name": "lastChangeOn_lt", "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", + "name": "lastChangeOn_lte", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "lastChangeOn_in", "type": { "kind": "LIST", "name": null, @@ -16012,8 +14880,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } @@ -16022,7 +14890,7 @@ { "defaultValue": null, "description": null, - "name": "OR", + "name": "lastChangeOn_not_in", "type": { "kind": "LIST", "name": null, @@ -16030,98 +14898,47 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "SCALAR", + "name": "Int", "ofType": null } } } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } }, { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "smithStatus_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "smithStatus_eq", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SmithStatus", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "smithStatus_not_eq", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SmithStatus", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_in", + "name": "smithStatus_in", "type": { "kind": "LIST", "name": null, @@ -16129,8 +14946,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SmithStatus", "ofType": null } } @@ -16139,7 +14956,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_in", + "name": "smithStatus_not_in", "type": { "kind": "LIST", "name": null, @@ -16147,8 +14964,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SmithStatus", "ofType": null } } @@ -16157,137 +14974,127 @@ { "defaultValue": null, "description": null, - "name": "id_contains", + "name": "certIssued_every", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "certIssued_some", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "certIssued_none", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "certReceived_every", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "certReceived_some", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "certReceived_none", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "CertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_endsWith", + "name": "smithCertIssued_every", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "SmithCertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "issuer_isNull", + "name": "smithCertIssued_some", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "SmithCertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "issuer", + "name": "smithCertIssued_none", "type": { "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "name": "SmithCertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "receiver_isNull", + "name": "smithCertReceived_every", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "SmithCertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "receiver", + "name": "smithCertReceived_some", "type": { "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "name": "SmithCertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "active_isNull", + "name": "smithCertReceived_none", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "SmithCertWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "active_eq", + "name": "isMember_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -16297,7 +15104,7 @@ { "defaultValue": null, "description": null, - "name": "active_not_eq", + "name": "isMember_eq", "type": { "kind": "SCALAR", "name": "Boolean", @@ -16307,109 +15114,13 @@ { "defaultValue": null, "description": null, - "name": "createdOn_isNull", + "name": "isMember_not_eq", "type": { "kind": "SCALAR", "name": "Boolean", "ofType": null } }, - { - "defaultValue": null, - "description": null, - "name": "createdOn_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "createdOn_not_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "createdOn_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "createdOn_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "createdOn_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "createdOn_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "createdOn_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "createdOn_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, { "defaultValue": null, "description": null, @@ -16519,90 +15230,90 @@ { "defaultValue": null, "description": null, - "name": "creation_every", + "name": "membershipHistory_every", "type": { "kind": "INPUT_OBJECT", - "name": "CertCreationWhereInput", + "name": "MembershipEventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "creation_some", + "name": "membershipHistory_some", "type": { "kind": "INPUT_OBJECT", - "name": "CertCreationWhereInput", + "name": "MembershipEventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "creation_none", + "name": "membershipHistory_none", "type": { "kind": "INPUT_OBJECT", - "name": "CertCreationWhereInput", + "name": "MembershipEventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "renewal_every", + "name": "ownerKeyChange_every", "type": { "kind": "INPUT_OBJECT", - "name": "CertRenewalWhereInput", + "name": "ChangeOwnerKeyWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "renewal_some", + "name": "ownerKeyChange_some", "type": { "kind": "INPUT_OBJECT", - "name": "CertRenewalWhereInput", + "name": "ChangeOwnerKeyWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "renewal_none", + "name": "ownerKeyChange_none", "type": { "kind": "INPUT_OBJECT", - "name": "CertRenewalWhereInput", + "name": "ChangeOwnerKeyWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "removal_every", + "name": "linkedAccount_every", "type": { "kind": "INPUT_OBJECT", - "name": "CertRemovalWhereInput", + "name": "AccountWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "removal_some", + "name": "linkedAccount_some", "type": { "kind": "INPUT_OBJECT", - "name": "CertRemovalWhereInput", + "name": "AccountWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "removal_none", + "name": "linkedAccount_none", "type": { "kind": "INPUT_OBJECT", - "name": "CertRemovalWhereInput", + "name": "AccountWhereInput", "ofType": null } }, @@ -16618,7 +15329,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "name": "IdentityWhereInput", "ofType": null } } @@ -16636,7 +15347,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "name": "IdentityWhereInput", "ofType": null } } @@ -16645,7 +15356,89 @@ ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "name": "IdentityWhereInput", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "Unconfirmed" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "Unvalidated" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "Member" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "NotMember" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "Revoked" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "Removed" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "IdentityStatus", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "Invited" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "Pending" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "Smith" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "Excluded" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "SmithStatus", "possibleTypes": null }, { @@ -16842,7 +15635,7 @@ { "defaultValue": null, "description": null, - "name": "cert_isNull", + "name": "issuer_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -16852,17 +15645,17 @@ { "defaultValue": null, "description": null, - "name": "cert", + "name": "issuer", "type": { "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "name": "IdentityWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_isNull", + "name": "receiver_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -16872,57 +15665,57 @@ { "defaultValue": null, "description": null, - "name": "blockNumber_eq", + "name": "receiver", "type": { - "kind": "SCALAR", - "name": "Int", + "kind": "INPUT_OBJECT", + "name": "IdentityWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_not_eq", + "name": "isActive_isNull", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_gt", + "name": "isActive_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_gte", + "name": "isActive_not_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_lt", + "name": "createdOn_isNull", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_lte", + "name": "createdOn_eq", "type": { "kind": "SCALAR", "name": "Int", @@ -16932,7 +15725,57 @@ { "defaultValue": null, "description": null, - "name": "blockNumber_in", + "name": "createdOn_not_eq", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdOn_gt", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdOn_gte", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdOn_lt", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdOn_lte", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdOn_in", "type": { "kind": "LIST", "name": null, @@ -16950,7 +15793,113 @@ { "defaultValue": null, "description": null, - "name": "blockNumber_not_in", + "name": "createdOn_not_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "expireOn_isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "expireOn_eq", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "expireOn_not_eq", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "expireOn_gt", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "expireOn_gte", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "expireOn_lt", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "expireOn_lte", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "expireOn_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "expireOn_not_in", "type": { "kind": "LIST", "name": null, @@ -16965,6 +15914,36 @@ } } }, + { + "defaultValue": null, + "description": null, + "name": "certHistory_every", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "certHistory_some", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "certHistory_none", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventWhereInput", + "ofType": null + } + }, { "defaultValue": null, "description": null, @@ -16977,7 +15956,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CertCreationWhereInput", + "name": "CertWhereInput", "ofType": null } } @@ -16995,7 +15974,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CertCreationWhereInput", + "name": "CertWhereInput", "ofType": null } } @@ -17004,7 +15983,7 @@ ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "CertCreationWhereInput", + "name": "CertWhereInput", "possibleTypes": null }, { @@ -17218,6 +16197,26 @@ "ofType": null } }, + { + "defaultValue": null, + "description": null, + "name": "event_isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "event", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", + "ofType": null + } + }, { "defaultValue": null, "description": null, @@ -17327,7 +16326,37 @@ { "defaultValue": null, "description": null, - "name": "AND", + "name": "eventType_isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "eventType_eq", + "type": { + "kind": "ENUM", + "name": "EventType", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "eventType_not_eq", + "type": { + "kind": "ENUM", + "name": "EventType", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "eventType_in", "type": { "kind": "LIST", "name": null, @@ -17335,8 +16364,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CertRenewalWhereInput", + "kind": "ENUM", + "name": "EventType", "ofType": null } } @@ -17345,7 +16374,7 @@ { "defaultValue": null, "description": null, - "name": "OR", + "name": "eventType_not_in", "type": { "kind": "LIST", "name": null, @@ -17353,38 +16382,103 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "CertRenewalWhereInput", + "kind": "ENUM", + "name": "EventType", "ofType": null } } } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "CertRenewalWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } }, { "defaultValue": null, "description": null, - "name": "id_eq", + "name": "AND", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertEventWhereInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "OR", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "CertEventWhereInput", + "ofType": null + } + } + } + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "CertEventWhereInput", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "CREATION" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "RENEWAL" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "REMOVAL" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "EventType", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ + { + "defaultValue": null, + "description": null, + "name": "id_isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "id_eq", "type": { "kind": "SCALAR", "name": "String", @@ -17560,7 +16654,7 @@ { "defaultValue": null, "description": null, - "name": "cert_isNull", + "name": "issuer_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -17570,17 +16664,17 @@ { "defaultValue": null, "description": null, - "name": "cert", + "name": "issuer", "type": { "kind": "INPUT_OBJECT", - "name": "CertWhereInput", + "name": "IdentityWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "blockNumber_isNull", + "name": "receiver_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -17590,7 +16684,27 @@ { "defaultValue": null, "description": null, - "name": "blockNumber_eq", + "name": "receiver", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdOn_isNull", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "createdOn_eq", "type": { "kind": "SCALAR", "name": "Int", @@ -17600,7 +16714,7 @@ { "defaultValue": null, "description": null, - "name": "blockNumber_not_eq", + "name": "createdOn_not_eq", "type": { "kind": "SCALAR", "name": "Int", @@ -17610,7 +16724,7 @@ { "defaultValue": null, "description": null, - "name": "blockNumber_gt", + "name": "createdOn_gt", "type": { "kind": "SCALAR", "name": "Int", @@ -17620,7 +16734,7 @@ { "defaultValue": null, "description": null, - "name": "blockNumber_gte", + "name": "createdOn_gte", "type": { "kind": "SCALAR", "name": "Int", @@ -17630,7 +16744,7 @@ { "defaultValue": null, "description": null, - "name": "blockNumber_lt", + "name": "createdOn_lt", "type": { "kind": "SCALAR", "name": "Int", @@ -17640,7 +16754,7 @@ { "defaultValue": null, "description": null, - "name": "blockNumber_lte", + "name": "createdOn_lte", "type": { "kind": "SCALAR", "name": "Int", @@ -17650,7 +16764,7 @@ { "defaultValue": null, "description": null, - "name": "blockNumber_in", + "name": "createdOn_in", "type": { "kind": "LIST", "name": null, @@ -17668,7 +16782,7 @@ { "defaultValue": null, "description": null, - "name": "blockNumber_not_in", + "name": "createdOn_not_in", "type": { "kind": "LIST", "name": null, @@ -17695,7 +16809,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CertRemovalWhereInput", + "name": "SmithCertWhereInput", "ofType": null } } @@ -17713,7 +16827,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "CertRemovalWhereInput", + "name": "SmithCertWhereInput", "ofType": null } } @@ -17722,7 +16836,7 @@ ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "CertRemovalWhereInput", + "name": "SmithCertWhereInput", "possibleTypes": null }, { @@ -17919,7 +17033,7 @@ { "defaultValue": null, "description": null, - "name": "issuer_isNull", + "name": "identity_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -17929,7 +17043,7 @@ { "defaultValue": null, "description": null, - "name": "issuer", + "name": "identity", "type": { "kind": "INPUT_OBJECT", "name": "IdentityWhereInput", @@ -17939,7 +17053,7 @@ { "defaultValue": null, "description": null, - "name": "receiver_isNull", + "name": "eventType_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -17949,27 +17063,63 @@ { "defaultValue": null, "description": null, - "name": "receiver", + "name": "eventType_eq", "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", + "kind": "ENUM", + "name": "EventType", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "active_isNull", + "name": "eventType_not_eq", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "ENUM", + "name": "EventType", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "active_eq", + "name": "eventType_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "eventType_not_in", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventType", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "event_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -17979,17 +17129,17 @@ { "defaultValue": null, "description": null, - "name": "active_not_eq", + "name": "event", "type": { - "kind": "SCALAR", - "name": "Boolean", + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "createdOn_isNull", + "name": "blockNumber_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -17999,7 +17149,7 @@ { "defaultValue": null, "description": null, - "name": "createdOn_eq", + "name": "blockNumber_eq", "type": { "kind": "SCALAR", "name": "Int", @@ -18009,7 +17159,7 @@ { "defaultValue": null, "description": null, - "name": "createdOn_not_eq", + "name": "blockNumber_not_eq", "type": { "kind": "SCALAR", "name": "Int", @@ -18019,7 +17169,7 @@ { "defaultValue": null, "description": null, - "name": "createdOn_gt", + "name": "blockNumber_gt", "type": { "kind": "SCALAR", "name": "Int", @@ -18029,7 +17179,7 @@ { "defaultValue": null, "description": null, - "name": "createdOn_gte", + "name": "blockNumber_gte", "type": { "kind": "SCALAR", "name": "Int", @@ -18039,7 +17189,7 @@ { "defaultValue": null, "description": null, - "name": "createdOn_lt", + "name": "blockNumber_lt", "type": { "kind": "SCALAR", "name": "Int", @@ -18049,7 +17199,7 @@ { "defaultValue": null, "description": null, - "name": "createdOn_lte", + "name": "blockNumber_lte", "type": { "kind": "SCALAR", "name": "Int", @@ -18059,7 +17209,7 @@ { "defaultValue": null, "description": null, - "name": "createdOn_in", + "name": "blockNumber_in", "type": { "kind": "LIST", "name": null, @@ -18077,7 +17227,7 @@ { "defaultValue": null, "description": null, - "name": "createdOn_not_in", + "name": "blockNumber_not_in", "type": { "kind": "LIST", "name": null, @@ -18095,203 +17245,124 @@ { "defaultValue": null, "description": null, - "name": "expireOn_isNull", + "name": "AND", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventWhereInput", + "ofType": null + } + } } }, { "defaultValue": null, "description": null, - "name": "expireOn_eq", + "name": "OR", "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventWhereInput", + "ofType": null + } + } } - }, + } + ], + "interfaces": null, + "kind": "INPUT_OBJECT", + "name": "MembershipEventWhereInput", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": null, + "inputFields": [ { "defaultValue": null, "description": null, - "name": "expireOn_not_eq", + "name": "id_isNull", "type": { "kind": "SCALAR", - "name": "Int", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "expireOn_gt", + "name": "id_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "expireOn_gte", + "name": "id_not_eq", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "expireOn_lt", + "name": "id_gt", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "expireOn_lte", + "name": "id_gte", "type": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "expireOn_in", + "name": "id_lt", "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "creation_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertCreationWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creation_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertCreationWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "creation_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertCreationWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "renewal_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRenewalWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "renewal_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRenewalWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "renewal_none", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRenewalWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "removal_every", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRemovalWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "removal_some", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRemovalWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "removal_none", + "name": "id_lte", "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRemovalWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "AND", + "name": "id_in", "type": { "kind": "LIST", "name": null, @@ -18299,8 +17370,8 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } @@ -18309,7 +17380,7 @@ { "defaultValue": null, "description": null, - "name": "OR", + "name": "id_not_in", "type": { "kind": "LIST", "name": null, @@ -18317,58 +17388,17 @@ "kind": "NON_NULL", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "kind": "SCALAR", + "name": "String", "ofType": null } } } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } }, { "defaultValue": null, "description": null, - "name": "id_gt", + "name": "id_contains", "type": { "kind": "SCALAR", "name": "String", @@ -18378,7 +17408,7 @@ { "defaultValue": null, "description": null, - "name": "id_gte", + "name": "id_not_contains", "type": { "kind": "SCALAR", "name": "String", @@ -18388,7 +17418,7 @@ { "defaultValue": null, "description": null, - "name": "id_lt", + "name": "id_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -18398,7 +17428,7 @@ { "defaultValue": null, "description": null, - "name": "id_lte", + "name": "id_not_containsInsensitive", "type": { "kind": "SCALAR", "name": "String", @@ -18408,43 +17438,7 @@ { "defaultValue": null, "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_contains", + "name": "id_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -18454,7 +17448,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_contains", + "name": "id_not_startsWith", "type": { "kind": "SCALAR", "name": "String", @@ -18464,7 +17458,7 @@ { "defaultValue": null, "description": null, - "name": "id_containsInsensitive", + "name": "id_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -18474,7 +17468,7 @@ { "defaultValue": null, "description": null, - "name": "id_not_containsInsensitive", + "name": "id_not_endsWith", "type": { "kind": "SCALAR", "name": "String", @@ -18484,47 +17478,47 @@ { "defaultValue": null, "description": null, - "name": "id_startsWith", + "name": "identity_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_startsWith", + "name": "identity", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "IdentityWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_endsWith", + "name": "previous_isNull", "type": { "kind": "SCALAR", - "name": "String", + "name": "Boolean", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "id_not_endsWith", + "name": "previous", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "INPUT_OBJECT", + "name": "AccountWhereInput", "ofType": null } }, { "defaultValue": null, "description": null, - "name": "cert_isNull", + "name": "next_isNull", "type": { "kind": "SCALAR", "name": "Boolean", @@ -18534,10 +17528,10 @@ { "defaultValue": null, "description": null, - "name": "cert", + "name": "next", "type": { "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", + "name": "AccountWhereInput", "ofType": null } }, @@ -18659,7 +17653,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SmithCertCreationWhereInput", + "name": "ChangeOwnerKeyWhereInput", "ofType": null } } @@ -18677,7 +17671,7 @@ "name": null, "ofType": { "kind": "INPUT_OBJECT", - "name": "SmithCertCreationWhereInput", + "name": "ChangeOwnerKeyWhereInput", "ofType": null } } @@ -18686,3316 +17680,1993 @@ ], "interfaces": null, "kind": "INPUT_OBJECT", - "name": "SmithCertCreationWhereInput", + "name": "ChangeOwnerKeyWhereInput", "possibleTypes": null }, { "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ + "enumValues": [ { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "isDeprecated": false, + "name": "id_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "id_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "id_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "id_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "blockNumber_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "blockNumber_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "blockNumber_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "blockNumber_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "timestamp_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "timestamp_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "timestamp_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "timestamp_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "from_id_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "from_id_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "from_id_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "from_id_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "to_id_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "cert_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "isDeprecated": false, + "name": "to_id_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "cert", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null - } + "isDeprecated": false, + "name": "to_id_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "isDeprecated": false, + "name": "to_id_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "amount_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_not_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "amount_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "amount_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "amount_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "comment_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "comment_DESC" }, { - "defaultValue": null, - "description": null, - "name": "blockNumber_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRenewalWhereInput", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "comment_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRenewalWhereInput", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "comment_DESC_NULLS_LAST" } ], + "fields": null, + "inputFields": null, "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "SmithCertRenewalWhereInput", + "kind": "ENUM", + "name": "TransferOrderByInput", "possibleTypes": null }, { - "description": null, + "description": "Identity", "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_eq", + "isDeprecated": false, + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_gt", + "args": [], + "deprecationReason": null, + "description": "Identity index", + "isDeprecated": false, + "name": "index", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_gte", + "args": [], + "deprecationReason": null, + "description": "Current account", + "isDeprecated": false, + "name": "account", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_lt", + "args": [], + "deprecationReason": null, + "description": "Name", + "isDeprecated": false, + "name": "name", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_lte", + "args": [], + "deprecationReason": null, + "description": "Status of the identity", + "isDeprecated": false, + "name": "status", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IdentityStatus", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_in", + "args": [], + "deprecationReason": null, + "description": "Block number of identity creation event", + "isDeprecated": false, + "name": "createdOn", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } } }, { - "defaultValue": null, - "description": null, - "name": "id_not_in", + "args": [], + "deprecationReason": null, + "description": "Event corresponding of identity creation event", + "isDeprecated": false, + "name": "createdIn", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Event", + "ofType": null } } }, { - "defaultValue": null, - "description": null, - "name": "id_contains", + "args": [], + "deprecationReason": null, + "description": "Block number of last identity, changeOwnerKey and membership event", + "isDeprecated": false, + "name": "lastChangeOn", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_not_contains", + "args": [], + "deprecationReason": null, + "description": "Smith status of the identity", + "isDeprecated": false, + "name": "smithStatus", "type": { - "kind": "SCALAR", - "name": "String", + "kind": "ENUM", + "name": "SmithStatus", "ofType": null } }, { - "defaultValue": null, - "description": null, - "name": "id_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cert_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "cert", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_not_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { "kind": "SCALAR", "name": "Int", "ofType": null } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "blockNumber_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { "kind": "SCALAR", "name": "Int", "ofType": null } } - } - }, - { - "defaultValue": null, - "description": null, - "name": "AND", + ], + "deprecationReason": null, + "description": "Certifications issued", + "isDeprecated": false, + "name": "certIssued", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRemovalWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cert", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { "kind": "INPUT_OBJECT", - "name": "SmithCertRemovalWhereInput", + "name": "CertWhereInput", "ofType": null } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "SmithCertRemovalWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ - { - "defaultValue": null, - "description": null, - "name": "id_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_in", + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "Certifications received", + "isDeprecated": false, + "name": "certReceived", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cert", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "id_not_in", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "Smith certifications issued", + "isDeprecated": false, + "name": "smithCertIssued", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmithCert", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "id_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "identity_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "identity", - "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_not_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { "kind": "SCALAR", "name": "Int", "ofType": null } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { "kind": "SCALAR", "name": "Int", "ofType": null } } - } - }, - { - "defaultValue": null, - "description": null, - "name": "AND", + ], + "deprecationReason": null, + "description": "Smith certifications received", + "isDeprecated": false, + "name": "smithCertReceived", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "INPUT_OBJECT", - "name": "MembershipWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "SmithCert", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "OR", + "args": [], + "deprecationReason": null, + "description": "True if the identity is a member", + "isDeprecated": false, + "name": "isMember", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "MembershipWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Boolean", + "ofType": null } } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "MembershipWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ + }, { - "defaultValue": null, - "description": null, - "name": "id_isNull", + "args": [], + "deprecationReason": null, + "description": "the current expireOn value", + "isDeprecated": false, + "name": "expireOn", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_not_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "id_in", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MembershipEventOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "history of the membership changes events", + "isDeprecated": false, + "name": "membershipHistory", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MembershipEvent", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "id_not_in", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ChangeOwnerKeyOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "Owner key changes", + "isDeprecated": false, + "name": "ownerKeyChange", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", + "kind": "LIST", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChangeOwnerKey", + "ofType": null + } } } } }, { - "defaultValue": null, - "description": null, - "name": "id_contains", + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": "linked accounts", + "isDeprecated": false, + "name": "linkedAccount", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + } + } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Identity", + "possibleTypes": null + }, + { + "description": "Certification", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_contains", + "isDeprecated": false, + "name": "id", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_containsInsensitive", + "isDeprecated": false, + "name": "issuer", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "id_not_containsInsensitive", + "isDeprecated": false, + "name": "receiver", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_startsWith", + "args": [], + "deprecationReason": null, + "description": "whether the certification is currently active or not", + "isDeprecated": false, + "name": "isActive", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_not_startsWith", + "args": [], + "deprecationReason": null, + "description": "the last createdOn value", + "isDeprecated": false, + "name": "createdOn", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, - "description": null, - "name": "id_endsWith", + "args": [], + "deprecationReason": null, + "description": "the current expireOn value", + "isDeprecated": false, + "name": "expireOn", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } }, { - "defaultValue": null, + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertEventOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, "description": null, - "name": "id_not_endsWith", + "isDeprecated": false, + "name": "certHistory", "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertEvent", + "ofType": null + } + } + } } - }, + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "Cert", + "possibleTypes": null + }, + { + "description": "Certification event", + "enumValues": null, + "fields": [ { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "identity_isNull", + "isDeprecated": false, + "name": "id", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "identity", + "isDeprecated": false, + "name": "cert", "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", - "ofType": null + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Cert", + "ofType": null + } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "expireOn_isNull", + "isDeprecated": false, + "name": "event", "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_not_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "expireOn_not_in", - "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "kind": "OBJECT", + "name": "Event", + "ofType": null } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "AND", + "isDeprecated": false, + "name": "blockNumber", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmithMembershipWhereInput", - "ofType": null - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } } }, { - "defaultValue": null, + "args": [], + "deprecationReason": null, "description": null, - "name": "OR", + "isDeprecated": false, + "name": "eventType", "type": { - "kind": "LIST", + "kind": "NON_NULL", "name": null, "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "SmithMembershipWhereInput", - "ofType": null - } + "kind": "ENUM", + "name": "EventType", + "ofType": null } } } ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "SmithMembershipWhereInput", + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "CertEvent", "possibleTypes": null }, { "description": null, - "enumValues": null, - "fields": null, - "inputFields": [ + "enumValues": [ { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "isDeprecated": false, + "name": "id_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "id_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_eq", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "id_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_gt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "id_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_gte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "cert_id_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_lt", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "cert_id_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_lte", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "cert_id_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "cert_id_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "cert_isActive_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "cert_isActive_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_contains", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "cert_isActive_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "cert_isActive_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_containsInsensitive", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "cert_createdOn_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "cert_createdOn_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_startsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "cert_createdOn_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "cert_createdOn_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "id_not_endsWith", - "type": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "isDeprecated": false, + "name": "cert_expireOn_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "identity_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "isDeprecated": false, + "name": "cert_expireOn_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "identity", - "type": { - "kind": "INPUT_OBJECT", - "name": "IdentityWhereInput", - "ofType": null - } + "isDeprecated": false, + "name": "cert_expireOn_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "previous_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "isDeprecated": false, + "name": "cert_expireOn_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "previous", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null - } + "isDeprecated": false, + "name": "event_id_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "next_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "isDeprecated": false, + "name": "event_id_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "next", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null - } + "isDeprecated": false, + "name": "event_id_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_isNull", - "type": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } + "isDeprecated": false, + "name": "event_id_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "event_index_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_not_eq", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "event_index_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_gt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "event_index_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_gte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "event_index_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_lt", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "event_phase_ASC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_lte", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "isDeprecated": false, + "name": "event_phase_DESC" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "event_phase_ASC_NULLS_FIRST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "blockNumber_not_in", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "event_phase_DESC_NULLS_LAST" }, { - "defaultValue": null, + "deprecationReason": null, "description": null, - "name": "AND", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", - "ofType": null - } - } - } + "isDeprecated": false, + "name": "event_pallet_ASC" }, - { - "defaultValue": null, - "description": null, - "name": "OR", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", - "ofType": null - } - } - } - } - ], - "interfaces": null, - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_DESC" + "name": "event_pallet_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "event_pallet_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "event_pallet_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC" + "name": "event_name_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC" + "name": "event_name_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC_NULLS_FIRST" + "name": "event_name_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC_NULLS_LAST" + "name": "event_name_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp_ASC" + "name": "blockNumber_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp_DESC" + "name": "blockNumber_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp_ASC_NULLS_FIRST" + "name": "blockNumber_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "timestamp_DESC_NULLS_LAST" + "name": "blockNumber_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "from_id_ASC" + "name": "eventType_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "from_id_DESC" + "name": "eventType_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "from_id_ASC_NULLS_FIRST" + "name": "eventType_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "from_id_DESC_NULLS_LAST" - }, + "name": "eventType_DESC_NULLS_LAST" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "CertEventOrderByInput", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "to_id_ASC" + "name": "id_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "to_id_DESC" + "name": "id_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "to_id_ASC_NULLS_FIRST" + "name": "id_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "to_id_DESC_NULLS_LAST" + "name": "id_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "amount_ASC" + "name": "issuer_id_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "amount_DESC" + "name": "issuer_id_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "amount_ASC_NULLS_FIRST" + "name": "issuer_id_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "amount_DESC_NULLS_LAST" + "name": "issuer_id_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "comment_ASC" + "name": "issuer_index_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "comment_DESC" + "name": "issuer_index_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "comment_ASC_NULLS_FIRST" + "name": "issuer_index_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "comment_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "TransferOrderByInput", - "possibleTypes": null - }, - { - "description": "Identity", - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Identity index", - "isDeprecated": false, - "name": "index", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Current account", - "isDeprecated": false, - "name": "account", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": "Name", - "isDeprecated": false, - "name": "name", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Certifications issued", - "isDeprecated": false, - "name": "certIssued", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Certifications received", - "isDeprecated": false, - "name": "certReceived", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null - } - } - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Smith certifications issued", - "isDeprecated": false, - "name": "smithCertIssued", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } - } - } - } + "name": "issuer_index_DESC_NULLS_LAST" }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], - "deprecationReason": null, - "description": "Smith certifications received", - "isDeprecated": false, - "name": "smithCertReceived", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } - } - } - } + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer_name_ASC" }, { - "args": [], "deprecationReason": null, - "description": "Membership of the identity", + "description": null, "isDeprecated": false, - "name": "membership", - "type": { - "kind": "OBJECT", - "name": "Membership", - "ofType": null - } + "name": "issuer_name_DESC" }, { - "args": [], "deprecationReason": null, - "description": "Smith Membership of the identity", + "description": null, "isDeprecated": false, - "name": "smithMembership", - "type": { - "kind": "OBJECT", - "name": "SmithMembership", - "ofType": null - } + "name": "issuer_name_ASC_NULLS_FIRST" }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "ChangeOwnerKeyWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "ChangeOwnerKeyOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], "deprecationReason": null, - "description": "Owner key changes", + "description": null, "isDeprecated": false, - "name": "ownerKeyChange", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "ChangeOwnerKey", - "ofType": null - } - } - } - } + "name": "issuer_name_DESC_NULLS_LAST" }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "AccountWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "AccountOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], "deprecationReason": null, - "description": "linked accounts", + "description": null, "isDeprecated": false, - "name": "linkedAccount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Identity", - "possibleTypes": null - }, - { - "description": "Certification", - "enumValues": null, - "fields": [ + "name": "issuer_status_ASC" + }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "name": "issuer_status_DESC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } - } + "name": "issuer_status_ASC_NULLS_FIRST" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } - } + "name": "issuer_status_DESC_NULLS_LAST" }, { - "args": [], "deprecationReason": null, - "description": "whether the certification is currently active or not", + "description": null, "isDeprecated": false, - "name": "active", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } + "name": "issuer_createdOn_ASC" }, { - "args": [], "deprecationReason": null, - "description": "the last createdOn value", + "description": null, "isDeprecated": false, - "name": "createdOn", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "name": "issuer_createdOn_DESC" }, { - "args": [], "deprecationReason": null, - "description": "the current expireOn value", + "description": null, "isDeprecated": false, - "name": "expireOn", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } + "name": "issuer_createdOn_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer_createdOn_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer_lastChangeOn_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer_lastChangeOn_DESC" }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertCreationWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertCreationOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "creation", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CertCreation", - "ofType": null - } - } - } - } + "name": "issuer_lastChangeOn_ASC_NULLS_FIRST" }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertRenewalWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertRenewalOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "renewal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CertRenewal", - "ofType": null - } - } - } - } + "name": "issuer_lastChangeOn_DESC_NULLS_LAST" }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "CertRemovalWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "CertRemovalOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "removal", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "CertRemoval", - "ofType": null - } - } - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Cert", - "possibleTypes": null - }, - { - "description": "Certification creation", - "enumValues": null, - "fields": [ + "name": "issuer_smithStatus_ASC" + }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "name": "issuer_smithStatus_DESC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null - } - } + "name": "issuer_smithStatus_ASC_NULLS_FIRST" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "CertCreation", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ + "name": "issuer_smithStatus_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer_isMember_ASC" + }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "issuer_isMember_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "issuer_isMember_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "issuer_isMember_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "issuer_expireOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC" + "name": "issuer_expireOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_DESC" + "name": "issuer_expireOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC_NULLS_FIRST" + "name": "issuer_expireOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_DESC_NULLS_LAST" + "name": "receiver_id_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC" + "name": "receiver_id_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC" + "name": "receiver_id_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC_NULLS_FIRST" + "name": "receiver_id_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC_NULLS_LAST" + "name": "receiver_index_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC" + "name": "receiver_index_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC" + "name": "receiver_index_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC_NULLS_FIRST" + "name": "receiver_index_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC_NULLS_LAST" + "name": "receiver_name_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC" + "name": "receiver_name_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC" + "name": "receiver_name_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC_NULLS_FIRST" + "name": "receiver_name_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC_NULLS_LAST" + "name": "receiver_status_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC" + "name": "receiver_status_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC" + "name": "receiver_status_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC_NULLS_FIRST" + "name": "receiver_status_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "CertCreationOrderByInput", - "possibleTypes": null - }, - { - "description": "Certification renewal", - "enumValues": null, - "fields": [ + "name": "receiver_createdOn_ASC" + }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "name": "receiver_createdOn_DESC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null - } - } + "name": "receiver_createdOn_ASC_NULLS_FIRST" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "CertRenewal", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ + "name": "receiver_createdOn_DESC_NULLS_LAST" + }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "receiver_lastChangeOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "receiver_lastChangeOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "receiver_lastChangeOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "receiver_lastChangeOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC" + "name": "receiver_smithStatus_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_DESC" + "name": "receiver_smithStatus_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC_NULLS_FIRST" + "name": "receiver_smithStatus_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_DESC_NULLS_LAST" + "name": "receiver_smithStatus_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC" + "name": "receiver_isMember_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC" + "name": "receiver_isMember_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC_NULLS_FIRST" + "name": "receiver_isMember_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC_NULLS_LAST" + "name": "receiver_isMember_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC" + "name": "receiver_expireOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC" + "name": "receiver_expireOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC_NULLS_FIRST" + "name": "receiver_expireOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC_NULLS_LAST" + "name": "receiver_expireOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC" + "name": "isActive_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC" + "name": "isActive_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC_NULLS_FIRST" + "name": "isActive_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC_NULLS_LAST" + "name": "isActive_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC" + "name": "createdOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC" + "name": "createdOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC_NULLS_FIRST" + "name": "createdOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC_NULLS_LAST" + "name": "createdOn_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "expireOn_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "expireOn_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "expireOn_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "expireOn_DESC_NULLS_LAST" } ], "fields": null, "inputFields": null, "interfaces": null, "kind": "ENUM", - "name": "CertRenewalOrderByInput", + "name": "CertOrderByInput", "possibleTypes": null }, { - "description": "Certification removal", + "description": "Smith certification", "enumValues": null, "fields": [ { @@ -22015,530 +19686,567 @@ } }, { - "args": [], + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "receiver", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createdOn", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "SmithCert", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer_id_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer_id_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer_id_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer_id_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer_index_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "issuer_index_DESC" + }, + { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Cert", - "ofType": null - } - } + "name": "issuer_index_ASC_NULLS_FIRST" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "CertRemoval", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ + "name": "issuer_index_DESC_NULLS_LAST" + }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "issuer_name_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "issuer_name_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "issuer_name_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "issuer_name_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC" + "name": "issuer_status_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_DESC" + "name": "issuer_status_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC_NULLS_FIRST" + "name": "issuer_status_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_DESC_NULLS_LAST" + "name": "issuer_status_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC" + "name": "issuer_createdOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC" + "name": "issuer_createdOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC_NULLS_FIRST" + "name": "issuer_createdOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC_NULLS_LAST" + "name": "issuer_createdOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC" + "name": "issuer_lastChangeOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC" + "name": "issuer_lastChangeOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC_NULLS_FIRST" + "name": "issuer_lastChangeOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC_NULLS_LAST" + "name": "issuer_lastChangeOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC" + "name": "issuer_smithStatus_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC" + "name": "issuer_smithStatus_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC_NULLS_FIRST" + "name": "issuer_smithStatus_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC_NULLS_LAST" + "name": "issuer_smithStatus_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC" + "name": "issuer_isMember_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC" + "name": "issuer_isMember_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC_NULLS_FIRST" + "name": "issuer_isMember_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "CertRemovalOrderByInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ + "name": "issuer_isMember_DESC_NULLS_LAST" + }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "issuer_expireOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "issuer_expireOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "issuer_expireOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "issuer_expireOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_ASC" + "name": "receiver_id_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_DESC" + "name": "receiver_id_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_ASC_NULLS_FIRST" + "name": "receiver_id_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_DESC_NULLS_LAST" + "name": "receiver_id_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_ASC" + "name": "receiver_index_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_DESC" + "name": "receiver_index_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_ASC_NULLS_FIRST" + "name": "receiver_index_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_DESC_NULLS_LAST" + "name": "receiver_index_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_name_ASC" + "name": "receiver_name_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_name_DESC" + "name": "receiver_name_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_name_ASC_NULLS_FIRST" + "name": "receiver_name_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_name_DESC_NULLS_LAST" + "name": "receiver_name_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_id_ASC" + "name": "receiver_status_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_id_DESC" + "name": "receiver_status_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_id_ASC_NULLS_FIRST" + "name": "receiver_status_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_id_DESC_NULLS_LAST" + "name": "receiver_status_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_index_ASC" + "name": "receiver_createdOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_index_DESC" + "name": "receiver_createdOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_index_ASC_NULLS_FIRST" + "name": "receiver_createdOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_index_DESC_NULLS_LAST" + "name": "receiver_createdOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_ASC" + "name": "receiver_lastChangeOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_DESC" + "name": "receiver_lastChangeOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_ASC_NULLS_FIRST" + "name": "receiver_lastChangeOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_DESC_NULLS_LAST" + "name": "receiver_lastChangeOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "active_ASC" + "name": "receiver_smithStatus_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "active_DESC" + "name": "receiver_smithStatus_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "active_ASC_NULLS_FIRST" + "name": "receiver_smithStatus_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "active_DESC_NULLS_LAST" + "name": "receiver_smithStatus_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_ASC" + "name": "receiver_isMember_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_DESC" + "name": "receiver_isMember_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_ASC_NULLS_FIRST" + "name": "receiver_isMember_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_DESC_NULLS_LAST" + "name": "receiver_isMember_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_ASC" + "name": "receiver_expireOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_DESC" + "name": "receiver_expireOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_ASC_NULLS_FIRST" + "name": "receiver_expireOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "CertOrderByInput", - "possibleTypes": null - }, - { - "description": "Smith certification", - "enumValues": null, - "fields": [ + "name": "receiver_expireOn_DESC_NULLS_LAST" + }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "name": "createdOn_ASC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } - } + "name": "createdOn_DESC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } - } + "name": "createdOn_ASC_NULLS_FIRST" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "active", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - } - }, + "name": "createdOn_DESC_NULLS_LAST" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "SmithCertOrderByInput", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ { "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn", + "name": "id", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "SCALAR", - "name": "Int", + "name": "String", "ofType": null } } @@ -22548,233 +20256,62 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - }, - { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertCreationWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertCreationOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } + "name": "identity", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null } - ], + } + }, + { + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "creation", + "name": "eventType", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCertCreation", - "ofType": null - } - } + "kind": "ENUM", + "name": "EventType", + "ofType": null } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRenewalWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertRenewalOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "renewal", + "name": "event", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCertRenewal", - "ofType": null - } - } + "kind": "OBJECT", + "name": "Event", + "ofType": null } } }, { - "args": [ - { - "defaultValue": null, - "description": null, - "name": "where", - "type": { - "kind": "INPUT_OBJECT", - "name": "SmithCertRemovalWhereInput", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "orderBy", - "type": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "ENUM", - "name": "SmithCertRemovalOrderByInput", - "ofType": null - } - } - } - }, - { - "defaultValue": null, - "description": null, - "name": "offset", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - }, - { - "defaultValue": null, - "description": null, - "name": "limit", - "type": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - ], + "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "removal", + "name": "blockNumber", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "LIST", - "name": null, - "ofType": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCertRemoval", - "ofType": null - } - } + "kind": "SCALAR", + "name": "Int", + "ofType": null } } } @@ -22782,404 +20319,395 @@ "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "SmithCert", + "name": "MembershipEvent", "possibleTypes": null }, { "description": null, - "enumValues": null, - "fields": [ + "enumValues": [ { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "name": "id_ASC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } - } + "name": "id_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "identity_id_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "identity_id_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "identity_id_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "identity_id_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "identity_index_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "identity_index_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "identity_index_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "identity_index_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "identity_name_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "identity_name_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "identity_name_ASC_NULLS_FIRST" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertCreation", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ + "name": "identity_name_DESC_NULLS_LAST" + }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "identity_status_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "identity_status_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "identity_status_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "identity_status_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC" + "name": "identity_createdOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_DESC" + "name": "identity_createdOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC_NULLS_FIRST" + "name": "identity_createdOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_DESC_NULLS_LAST" + "name": "identity_createdOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC" + "name": "identity_lastChangeOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC" + "name": "identity_lastChangeOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC_NULLS_FIRST" + "name": "identity_lastChangeOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC_NULLS_LAST" + "name": "identity_lastChangeOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC" + "name": "identity_smithStatus_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC" + "name": "identity_smithStatus_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC_NULLS_FIRST" + "name": "identity_smithStatus_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC_NULLS_LAST" + "name": "identity_smithStatus_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC" + "name": "identity_isMember_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC" + "name": "identity_isMember_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC_NULLS_FIRST" + "name": "identity_isMember_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC_NULLS_LAST" + "name": "identity_isMember_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC" + "name": "identity_expireOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC" + "name": "identity_expireOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC_NULLS_FIRST" + "name": "identity_expireOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "SmithCertCreationOrderByInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + "name": "identity_expireOn_DESC_NULLS_LAST" + }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "name": "eventType_ASC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } - } + "name": "eventType_DESC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertRenewal", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ + "name": "eventType_ASC_NULLS_FIRST" + }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "eventType_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "event_id_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "event_id_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "event_id_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC" + "name": "event_id_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_DESC" + "name": "event_index_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC_NULLS_FIRST" + "name": "event_index_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_DESC_NULLS_LAST" + "name": "event_index_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC" + "name": "event_index_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC" + "name": "event_phase_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC_NULLS_FIRST" + "name": "event_phase_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC_NULLS_LAST" + "name": "event_phase_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC" + "name": "event_phase_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC" + "name": "event_pallet_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC_NULLS_FIRST" + "name": "event_pallet_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC_NULLS_LAST" + "name": "event_pallet_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC" + "name": "event_pallet_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC" + "name": "event_name_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC_NULLS_FIRST" + "name": "event_name_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC_NULLS_LAST" + "name": "event_name_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "event_name_DESC_NULLS_LAST" }, { "deprecationReason": null, @@ -23210,11 +20738,11 @@ "inputFields": null, "interfaces": null, "kind": "ENUM", - "name": "SmithCertRenewalOrderByInput", + "name": "MembershipEventOrderByInput", "possibleTypes": null }, { - "description": null, + "description": "owner key change", "enumValues": null, "fields": [ { @@ -23238,13 +20766,45 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert", + "name": "identity", "type": { "kind": "NON_NULL", "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithCert", + "name": "Identity", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "previous", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "next", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Account", "ofType": null } } @@ -23269,7 +20829,7 @@ "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "SmithCertRemoval", + "name": "ChangeOwnerKey", "possibleTypes": null }, { @@ -23303,939 +20863,756 @@ "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_id_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cert_id_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cert_id_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cert_id_DESC_NULLS_LAST" + "name": "identity_id_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC" + "name": "identity_id_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC" + "name": "identity_id_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_ASC_NULLS_FIRST" + "name": "identity_id_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_active_DESC_NULLS_LAST" + "name": "identity_index_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC" + "name": "identity_index_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC" + "name": "identity_index_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_ASC_NULLS_FIRST" + "name": "identity_index_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_createdOn_DESC_NULLS_LAST" + "name": "identity_name_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC" + "name": "identity_name_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC" + "name": "identity_name_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_ASC_NULLS_FIRST" + "name": "identity_name_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cert_expireOn_DESC_NULLS_LAST" + "name": "identity_status_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC" + "name": "identity_status_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC" + "name": "identity_status_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC_NULLS_FIRST" + "name": "identity_status_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "SmithCertRemovalOrderByInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC" + "name": "identity_createdOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "identity_createdOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "identity_createdOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "identity_createdOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_ASC" + "name": "identity_lastChangeOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_DESC" + "name": "identity_lastChangeOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_ASC_NULLS_FIRST" + "name": "identity_lastChangeOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_id_DESC_NULLS_LAST" + "name": "identity_lastChangeOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_ASC" + "name": "identity_smithStatus_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_DESC" + "name": "identity_smithStatus_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_ASC_NULLS_FIRST" + "name": "identity_smithStatus_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_index_DESC_NULLS_LAST" + "name": "identity_smithStatus_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_name_ASC" + "name": "identity_isMember_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_name_DESC" + "name": "identity_isMember_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_name_ASC_NULLS_FIRST" + "name": "identity_isMember_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "issuer_name_DESC_NULLS_LAST" + "name": "identity_isMember_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_id_ASC" + "name": "identity_expireOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_id_DESC" + "name": "identity_expireOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_id_ASC_NULLS_FIRST" + "name": "identity_expireOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_id_DESC_NULLS_LAST" + "name": "identity_expireOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_index_ASC" + "name": "previous_id_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_index_DESC" + "name": "previous_id_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_index_ASC_NULLS_FIRST" + "name": "previous_id_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_index_DESC_NULLS_LAST" + "name": "previous_id_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_ASC" + "name": "next_id_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_DESC" + "name": "next_id_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_ASC_NULLS_FIRST" + "name": "next_id_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "receiver_name_DESC_NULLS_LAST" + "name": "next_id_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "active_ASC" + "name": "blockNumber_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "active_DESC" + "name": "blockNumber_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "active_ASC_NULLS_FIRST" + "name": "blockNumber_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "active_DESC_NULLS_LAST" - }, + "name": "blockNumber_DESC_NULLS_LAST" + } + ], + "fields": null, + "inputFields": null, + "interfaces": null, + "kind": "ENUM", + "name": "ChangeOwnerKeyOrderByInput", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_ASC" + "name": "id_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_DESC" + "name": "id_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_ASC_NULLS_FIRST" + "name": "id_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "createdOn_DESC_NULLS_LAST" + "name": "id_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_ASC" + "name": "identity_id_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_DESC" + "name": "identity_id_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_ASC_NULLS_FIRST" + "name": "identity_id_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "SmithCertOrderByInput", - "possibleTypes": null - }, - { - "description": "Membership", - "enumValues": null, - "fields": [ + "name": "identity_id_DESC_NULLS_LAST" + }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "name": "identity_index_ASC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } - } + "name": "identity_index_DESC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "Membership", - "possibleTypes": null - }, - { - "description": "Smith membership", - "enumValues": null, - "fields": [ + "name": "identity_index_ASC_NULLS_FIRST" + }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "name": "identity_index_DESC_NULLS_LAST" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } - } + "name": "identity_name_ASC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithMembership", - "possibleTypes": null - }, - { - "description": "owner key change", - "enumValues": null, - "fields": [ + "name": "identity_name_DESC" + }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } + "name": "identity_name_ASC_NULLS_FIRST" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Identity", - "ofType": null - } - } + "name": "identity_name_DESC_NULLS_LAST" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "previous", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } + "name": "identity_status_ASC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "next", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Account", - "ofType": null - } - } + "name": "identity_status_DESC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "ChangeOwnerKey", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ + "name": "identity_status_ASC_NULLS_FIRST" + }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "identity_status_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "identity_createdOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "identity_createdOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "identity_createdOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_ASC" + "name": "identity_createdOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_DESC" + "name": "identity_lastChangeOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_ASC_NULLS_FIRST" + "name": "identity_lastChangeOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_DESC_NULLS_LAST" + "name": "identity_lastChangeOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_ASC" + "name": "identity_lastChangeOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_DESC" + "name": "identity_smithStatus_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_ASC_NULLS_FIRST" + "name": "identity_smithStatus_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_DESC_NULLS_LAST" + "name": "identity_smithStatus_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_ASC" + "name": "identity_smithStatus_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_DESC" + "name": "identity_isMember_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_ASC_NULLS_FIRST" + "name": "identity_isMember_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_DESC_NULLS_LAST" + "name": "identity_isMember_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "previous_id_ASC" + "name": "identity_isMember_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "previous_id_DESC" + "name": "identity_expireOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "previous_id_ASC_NULLS_FIRST" + "name": "identity_expireOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "previous_id_DESC_NULLS_LAST" + "name": "identity_expireOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "next_id_ASC" + "name": "identity_expireOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "next_id_DESC" + "name": "linkedIdentity_id_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "next_id_ASC_NULLS_FIRST" + "name": "linkedIdentity_id_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "next_id_DESC_NULLS_LAST" + "name": "linkedIdentity_id_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC" + "name": "linkedIdentity_id_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC" + "name": "linkedIdentity_index_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_ASC_NULLS_FIRST" + "name": "linkedIdentity_index_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "blockNumber_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "ChangeOwnerKeyOrderByInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ + "name": "linkedIdentity_index_ASC_NULLS_FIRST" + }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "linkedIdentity_index_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "linkedIdentity_name_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "linkedIdentity_name_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "linkedIdentity_name_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_ASC" + "name": "linkedIdentity_name_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_DESC" + "name": "linkedIdentity_status_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_ASC_NULLS_FIRST" + "name": "linkedIdentity_status_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_id_DESC_NULLS_LAST" + "name": "linkedIdentity_status_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_ASC" + "name": "linkedIdentity_status_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_DESC" + "name": "linkedIdentity_createdOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_ASC_NULLS_FIRST" + "name": "linkedIdentity_createdOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_index_DESC_NULLS_LAST" + "name": "linkedIdentity_createdOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_ASC" + "name": "linkedIdentity_createdOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_DESC" + "name": "linkedIdentity_lastChangeOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_ASC_NULLS_FIRST" + "name": "linkedIdentity_lastChangeOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_DESC_NULLS_LAST" + "name": "linkedIdentity_lastChangeOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_id_ASC" + "name": "linkedIdentity_lastChangeOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_id_DESC" + "name": "linkedIdentity_smithStatus_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_id_ASC_NULLS_FIRST" + "name": "linkedIdentity_smithStatus_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_id_DESC_NULLS_LAST" + "name": "linkedIdentity_smithStatus_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_index_ASC" + "name": "linkedIdentity_smithStatus_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_index_DESC" + "name": "linkedIdentity_isMember_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_index_ASC_NULLS_FIRST" + "name": "linkedIdentity_isMember_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_index_DESC_NULLS_LAST" + "name": "linkedIdentity_isMember_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_name_ASC" + "name": "linkedIdentity_isMember_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_name_DESC" + "name": "linkedIdentity_expireOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_name_ASC_NULLS_FIRST" + "name": "linkedIdentity_expireOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "linkedIdentity_name_DESC_NULLS_LAST" + "name": "linkedIdentity_expireOn_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "linkedIdentity_expireOn_DESC_NULLS_LAST" } ], "fields": null, @@ -24384,281 +21761,449 @@ } }, { - "args": [], + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "pageInfo", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "PageInfo", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "totalCount", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransfersConnection", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "node", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transfer", + "ofType": null + } + } + }, + { + "args": [], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "cursor", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "TransferEdge", + "possibleTypes": null + }, + { + "description": null, + "enumValues": [ + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "id_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "index_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "index_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "index_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "index_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "account_id_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "account_id_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "account_id_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "account_id_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "name_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "status_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "status_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "status_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "status_DESC_NULLS_LAST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createdOn_ASC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createdOn_DESC" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createdOn_ASC_NULLS_FIRST" + }, + { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "pageInfo", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - } + "name": "createdOn_DESC_NULLS_LAST" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "TransfersConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + "name": "createdIn_id_ASC" + }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "node", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Transfer", - "ofType": null - } - } + "name": "createdIn_id_DESC" }, { - "args": [], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "TransferEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ + "name": "createdIn_id_ASC_NULLS_FIRST" + }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC" + "name": "createdIn_id_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC" + "name": "createdIn_index_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" + "name": "createdIn_index_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" + "name": "createdIn_index_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index_ASC" + "name": "createdIn_index_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index_DESC" + "name": "createdIn_phase_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index_ASC_NULLS_FIRST" + "name": "createdIn_phase_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "index_DESC_NULLS_LAST" + "name": "createdIn_phase_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "account_id_ASC" + "name": "createdIn_phase_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "account_id_DESC" + "name": "createdIn_pallet_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "account_id_ASC_NULLS_FIRST" + "name": "createdIn_pallet_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "account_id_DESC_NULLS_LAST" + "name": "createdIn_pallet_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "name_ASC" + "name": "createdIn_pallet_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "name_DESC" + "name": "createdIn_name_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "name_ASC_NULLS_FIRST" + "name": "createdIn_name_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "name_DESC_NULLS_LAST" + "name": "createdIn_name_ASC_NULLS_FIRST" + }, + { + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "createdIn_name_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "membership_id_ASC" + "name": "lastChangeOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "membership_id_DESC" + "name": "lastChangeOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "membership_id_ASC_NULLS_FIRST" + "name": "lastChangeOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "membership_id_DESC_NULLS_LAST" + "name": "lastChangeOn_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "membership_expireOn_ASC" + "name": "smithStatus_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "membership_expireOn_DESC" + "name": "smithStatus_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "membership_expireOn_ASC_NULLS_FIRST" + "name": "smithStatus_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "membership_expireOn_DESC_NULLS_LAST" + "name": "smithStatus_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithMembership_id_ASC" + "name": "isMember_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithMembership_id_DESC" + "name": "isMember_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithMembership_id_ASC_NULLS_FIRST" + "name": "isMember_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithMembership_id_DESC_NULLS_LAST" + "name": "isMember_DESC_NULLS_LAST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithMembership_expireOn_ASC" + "name": "expireOn_ASC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithMembership_expireOn_DESC" + "name": "expireOn_DESC" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithMembership_expireOn_ASC_NULLS_FIRST" + "name": "expireOn_ASC_NULLS_FIRST" }, { "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "smithMembership_expireOn_DESC_NULLS_LAST" + "name": "expireOn_DESC_NULLS_LAST" } ], "fields": null, @@ -25019,7 +22564,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertCreationEdge", + "name": "CertEventEdge", "ofType": null } } @@ -25062,7 +22607,7 @@ "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "CertCreationsConnection", + "name": "CertEventsConnection", "possibleTypes": null }, { @@ -25080,7 +22625,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertCreation", + "name": "CertEvent", "ofType": null } } @@ -25105,7 +22650,7 @@ "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "CertCreationEdge", + "name": "CertEventEdge", "possibleTypes": null }, { @@ -25129,7 +22674,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertRenewalEdge", + "name": "SmithCertEdge", "ofType": null } } @@ -25172,7 +22717,7 @@ "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "CertRenewalsConnection", + "name": "SmithCertsConnection", "possibleTypes": null }, { @@ -25190,7 +22735,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertRenewal", + "name": "SmithCert", "ofType": null } } @@ -25215,7 +22760,7 @@ "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "CertRenewalEdge", + "name": "SmithCertEdge", "possibleTypes": null }, { @@ -25239,7 +22784,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertRemovalEdge", + "name": "MembershipEventEdge", "ofType": null } } @@ -25282,7 +22827,7 @@ "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "CertRemovalsConnection", + "name": "MembershipEventsConnection", "possibleTypes": null }, { @@ -25300,7 +22845,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "CertRemoval", + "name": "MembershipEvent", "ofType": null } } @@ -25319,25 +22864,174 @@ "name": "String", "ofType": null } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "CertRemovalEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + } + } + ], + "inputFields": null, + "interfaces": [], + "kind": "OBJECT", + "name": "MembershipEventEdge", + "possibleTypes": null + }, + { + "description": null, + "enumValues": null, + "fields": [ + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "BlockWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "BlockOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "blocks", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Block", + "ofType": null + } + } + } + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], + "deprecationReason": null, + "description": null, + "isDeprecated": false, + "name": "blockById", + "type": { + "kind": "OBJECT", + "name": "Block", + "ofType": null + } + }, + { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ExtrinsicWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ExtrinsicOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "edges", + "name": "extrinsics", "type": { "kind": "NON_NULL", "name": null, @@ -25349,7 +23043,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithCertEdge", + "name": "Extrinsic", "ofType": null } } @@ -25357,97 +23051,87 @@ } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "pageInfo", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertsConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "node", + "name": "extrinsicById", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCert", - "ofType": null - } + "kind": "OBJECT", + "name": "Extrinsic", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CallWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CallOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "edges", + "name": "calls", "type": { "kind": "NON_NULL", "name": null, @@ -25459,7 +23143,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithCertCreationEdge", + "name": "Call", "ofType": null } } @@ -25467,97 +23151,187 @@ } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "pageInfo", + "name": "callById", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "OBJECT", + "name": "Call", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "EventWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "EventOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertCreationsConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "node", + "name": "events", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SmithCertCreation", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Event", + "ofType": null + } + } } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cursor", + "name": "eventById", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Event", + "ofType": null } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertCreationEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ItemsCounterWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ItemsCounterOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "edges", + "name": "itemsCounters", "type": { "kind": "NON_NULL", "name": null, @@ -25569,7 +23343,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithCertRenewalEdge", + "name": "ItemsCounter", "ofType": null } } @@ -25577,97 +23351,87 @@ } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "pageInfo", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertRenewalsConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "node", + "name": "itemsCounterById", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCertRenewal", - "ofType": null - } + "kind": "OBJECT", + "name": "ItemsCounter", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "cursor", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "AccountWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "AccountOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertRenewalEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "edges", + "name": "accounts", "type": { "kind": "NON_NULL", "name": null, @@ -25679,7 +23443,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithCertRemovalEdge", + "name": "Account", "ofType": null } } @@ -25687,228 +23451,387 @@ } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "pageInfo", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertRemovalsConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "node", + "name": "accountById", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "SmithCertRemoval", - "ofType": null - } + "kind": "OBJECT", + "name": "Account", + "ofType": null } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "TransferWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "TransferOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cursor", + "name": "transfers", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Transfer", + "ofType": null + } + } } } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithCertRemovalEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_id_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_id_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_id_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_id_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_index_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_index_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_index_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_index_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_name_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_name_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_name_ASC_NULLS_FIRST" }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "identity_name_DESC_NULLS_LAST" + "name": "transferById", + "type": { + "kind": "OBJECT", + "name": "Transfer", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "IdentityWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "IdentityOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_ASC" + "name": "identities", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } + } + } + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_DESC" + "name": "identityById", + "type": { + "kind": "OBJECT", + "name": "Identity", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "ChangeOwnerKeyWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "ChangeOwnerKeyOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_ASC_NULLS_FIRST" + "name": "changeOwnerKeys", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "ChangeOwnerKey", + "ofType": null + } + } + } + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "MembershipOrderByInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ + "name": "changeOwnerKeyById", + "type": { + "kind": "OBJECT", + "name": "ChangeOwnerKey", + "ofType": null + } + }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "edges", + "name": "certs", "type": { "kind": "NON_NULL", "name": null, @@ -25920,7 +23843,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "MembershipEdge", + "name": "Cert", "ofType": null } } @@ -25928,228 +23851,187 @@ } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "pageInfo", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } - } - }, - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null - } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "MembershipsConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "node", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "Membership", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } } - } - }, - { - "args": [], + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cursor", + "name": "certById", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "Cert", + "ofType": null } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "MembershipEdge", - "possibleTypes": null - }, - { - "description": null, - "enumValues": [ - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "id_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_id_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_id_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_id_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_id_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_index_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_index_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_index_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_index_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_name_ASC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_name_DESC" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_name_ASC_NULLS_FIRST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "identity_name_DESC_NULLS_LAST" - }, - { - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "expireOn_ASC" }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "CertEventWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "CertEventOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_DESC" + "name": "certEvents", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "CertEvent", + "ofType": null + } + } + } + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_ASC_NULLS_FIRST" + "name": "certEventById", + "type": { + "kind": "OBJECT", + "name": "CertEvent", + "ofType": null + } }, { + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "SmithCertWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "SmithCertOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "expireOn_DESC_NULLS_LAST" - } - ], - "fields": null, - "inputFields": null, - "interfaces": null, - "kind": "ENUM", - "name": "SmithMembershipOrderByInput", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "edges", + "name": "smithCerts", "type": { "kind": "NON_NULL", "name": null, @@ -26161,7 +24043,7 @@ "name": null, "ofType": { "kind": "OBJECT", - "name": "SmithMembershipEdge", + "name": "SmithCert", "ofType": null } } @@ -26169,85 +24051,137 @@ } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "pageInfo", + "name": "smithCertById", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "OBJECT", - "name": "PageInfo", - "ofType": null - } + "kind": "OBJECT", + "name": "SmithCert", + "ofType": null } }, { - "args": [], - "deprecationReason": null, - "description": null, - "isDeprecated": false, - "name": "totalCount", - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Int", - "ofType": null + "args": [ + { + "defaultValue": null, + "description": null, + "name": "where", + "type": { + "kind": "INPUT_OBJECT", + "name": "MembershipEventWhereInput", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "orderBy", + "type": { + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "ENUM", + "name": "MembershipEventOrderByInput", + "ofType": null + } + } + } + }, + { + "defaultValue": null, + "description": null, + "name": "offset", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } + }, + { + "defaultValue": null, + "description": null, + "name": "limit", + "type": { + "kind": "SCALAR", + "name": "Int", + "ofType": null + } } - } - } - ], - "inputFields": null, - "interfaces": [], - "kind": "OBJECT", - "name": "SmithMembershipsConnection", - "possibleTypes": null - }, - { - "description": null, - "enumValues": null, - "fields": [ - { - "args": [], + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "node", + "name": "membershipEvents", "type": { "kind": "NON_NULL", "name": null, "ofType": { - "kind": "OBJECT", - "name": "SmithMembership", - "ofType": null + "kind": "LIST", + "name": null, + "ofType": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "OBJECT", + "name": "MembershipEvent", + "ofType": null + } + } } } }, { - "args": [], + "args": [ + { + "defaultValue": null, + "description": null, + "name": "id", + "type": { + "kind": "NON_NULL", + "name": null, + "ofType": { + "kind": "SCALAR", + "name": "String", + "ofType": null + } + } + } + ], "deprecationReason": null, "description": null, "isDeprecated": false, - "name": "cursor", + "name": "membershipEventById", "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "String", - "ofType": null - } + "kind": "OBJECT", + "name": "MembershipEvent", + "ofType": null } } ], "inputFields": null, "interfaces": [], "kind": "OBJECT", - "name": "SmithMembershipEdge", + "name": "Subscription", "possibleTypes": null }, { diff --git a/src/commands/identity.rs b/src/commands/identity.rs index de00263af6317c92a25d1f4f2979d407118ab227..6da04b96fce1d5931a06589ccabf01d4112558aa 100644 --- a/src/commands/identity.rs +++ b/src/commands/identity.rs @@ -3,7 +3,9 @@ use crate::*; use crate::{ commands::revocation::generate_revoc_doc, runtime::runtime_types::{ - common_runtime::entities::IdtyData, pallet_identity::types::*, sp_runtime::MultiSignature, + common_runtime::entities::IdtyData, pallet_identity::types::*, + pallet_smith_members::types::SmithMeta, pallet_smith_members::SmithStatus, + sp_runtime::MultiSignature, }, }; @@ -146,29 +148,103 @@ pub async fn handle_command(data: Data, command: Subcommand) -> Result<(), GcliE // ====================== +// TODO derive this automatically +impl Serialize for IdtyStatus { + fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> + where + S: serde::Serializer, + { + serializer.serialize_str(&format!("{:?}", self)) + } +} +impl Serialize for SmithStatus { + fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> + where + S: serde::Serializer, + { + serializer.serialize_str(&format!("{:?}", self)) + } +} + +// for why Arc<[T]> instead of Vec<T> see +// https://www.youtube.com/watch?v=A4cKi7PTJSs&pp=ygULVmVjPFN0cmluZz4%3D +/// struct to represent details of identity request +#[derive(Serialize)] +struct IdtyView { + index: IdtyId, + status: IdtyStatus, + pseudo: String, + owner_key: AccountId, + old_owner_key: Vec<AccountId>, + expire_on: BlockNumber, + cert_issued: Vec<String>, + cert_received: Vec<String>, + smith: Option<SmithView>, + linked_account: Vec<AccountId>, +} +impl std::fmt::Display for IdtyView { + fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { + writeln!(f, "Identity index: {}", self.index)?; + writeln!(f, "Username: {}", self.pseudo)?; + writeln!( + f, + "Address: {}", + AccountId::to_string(&self.owner_key) + )?; + writeln!(f, "Status: {:?}", self.status)?; + writeln!( + f, + "Certifications: issued {}, received {}", + self.cert_issued.len(), + self.cert_received.len() + )?; + if let Some(smith) = &self.smith { + writeln!(f, "Smith status: {:?}", smith.status)?; + writeln!( + f, + "Smith certs: issued {}, received {}", + smith.cert_issued.len(), + smith.cert_received.len() + )?; + } + let a = self.linked_account.len(); + if a > 1 { + writeln!(f, "Linked accounts count: {a}")?; + } + Ok(()) + } +} + +#[derive(Serialize)] +struct SmithView { + status: SmithStatus, + cert_issued: Vec<String>, + cert_received: Vec<String>, +} + /// get identity pub async fn get_identity( data: &Data, account_id: Option<AccountId>, identity_id: Option<IdtyId>, - username: Option<String>, + pseudo: Option<String>, ) -> Result<(), GcliError> { let client = data.client(); let indexer = data.indexer.clone(); // get idty_id - let idty = - match (identity_id, &account_id, &username) { + let index = + match (identity_id, &account_id, &pseudo) { // idty_id - (Some(idty), None, None) => idty, + (Some(index), None, None) => index, // account_id → idty_id (None, Some(account_id), None) => get_idty_index_by_account_id(client, account_id) .await? .ok_or_else(|| anyhow!("no identity for account '{account_id}'"))?, - // username → idty_id - (None, None, Some(username)) => get_idty_index_by_name(client, username) + // pseudo → idty_id + (None, None, Some(pseudo)) => get_idty_index_by_name(client, pseudo) .await? - .ok_or_else(|| anyhow!("no identity for name '{username}'"))?, + .ok_or_else(|| anyhow!("no identity for name '{pseudo}'"))?, _ => { return Err(GcliError::Logic( "One and only one argument is needed to fetch the identity.".to_string(), @@ -176,39 +252,79 @@ pub async fn get_identity( } }; // idty_id → value - let value = get_identity_by_index(client, idty) + let value = get_identity_by_index(client, index) .await? - .ok_or_else(|| anyhow!("no identity value for index {idty}"))?; + .ok_or_else(|| anyhow!("no identity value for index {index}"))?; - // --- print result --- - // 1. identity index - println!("Identity index: {idty}",); - // 2. username (indexer needed if not provided) - let username = username.unwrap_or(if let Some(indexer) = &indexer { + // pseudo + let pseudo = pseudo.unwrap_or(if let Some(indexer) = &indexer { indexer - .username_by_index(idty) + .username_by_index(index) .await? - .ok_or_else(|| anyhow!("indexer does not have username for this index {idty}"))? + .ok_or_else(|| anyhow!("indexer does not have username for this index {index}"))? } else { "<no indexer>".to_string() }); - println!("Username: {username}",); - // 3. address - println!("Address: {}", AccountId::to_string(&value.owner_key)); - // 4. status - println!("Status: {:?}", value.status); - - // get more info - if let Some(indexer) = &indexer { - let info = indexer.identity_info(idty).await.expect("no info"); - println!( - "Certifications: issued {}, received {}", - info.cert_issued.len(), - info.cert_received.len() - ); - let a = info.linked_account.len(); - if a > 1 { - println!("Linked accounts: {a}"); + + // get certs if possible + let (cert_issued, cert_received, linked_account, smith_cert_issued, smith_cert_received) = + if let Some(indexer) = &indexer { + let info = indexer.identity_info(index).await.expect("no info"); + ( + info.cert_issued + .into_iter() + .map(|i| i.receiver.name.to_string()) + .collect(), + info.cert_received + .into_iter() + .map(|i| i.issuer.name.to_string()) + .collect(), + info.linked_account + .into_iter() + .map(|i| AccountId::from_str(&i.id).unwrap()) + .collect(), + info.smith_cert_issued + .into_iter() + .map(|i| i.receiver.name.to_string()) + .collect(), + info.smith_cert_received + .into_iter() + .map(|i| i.issuer.name.to_string()) + .collect(), + ) + } else { + (vec![], vec![], vec![], vec![], vec![]) + }; + + // get smith info + let smith = get_smith(client, index).await?; + let smith = smith.map(|s| SmithView { + status: s.status, + cert_issued: smith_cert_issued, + cert_received: smith_cert_received, + }); + + // build view + let view = IdtyView { + index, + status: value.status, + pseudo, + owner_key: value.owner_key, + old_owner_key: vec![], // TODO fetch history of owner key change + expire_on: value.next_scheduled, // TODO if zero use membership instead + cert_issued, + cert_received, + smith, + linked_account, + }; + + // TODO generic way to do this shared between function + match data.args.output_format { + OutputFormat::Human => { + println!("{view}"); + } + OutputFormat::Json => { + println!("{}", serde_json::to_string(&view).map_err(|e| anyhow!(e))?); } } @@ -228,6 +344,19 @@ pub async fn get_idty_index_by_account_id( .await } +/// get smith info by index +pub async fn get_smith( + client: &Client, + index: IdtyId, +) -> Result<Option<SmithMeta<IdtyId>>, subxt::Error> { + client + .storage() + .at_latest() + .await? + .fetch(&runtime::storage().smith_members().smiths(index)) + .await +} + /// get identity index by name pub async fn get_idty_index_by_name( client: &Client, diff --git a/src/data.rs b/src/data.rs index 4cb3a67e4a959c7405f19adc7594b5fbc61864b3..87a785400747bf69181695caf7fe637d99177682 100644 --- a/src/data.rs +++ b/src/data.rs @@ -203,7 +203,7 @@ impl Data { Ok(self) } /// build an indexer if not disabled - pub async fn build_indexer(mut self) -> Result<Self, anyhow::Error> { + pub async fn build_indexer(mut self) -> Result<Self, GcliError> { if self.args.no_indexer { log::info!("called build_indexer while providing no_indexer"); self.indexer = None; @@ -211,7 +211,8 @@ impl Data { self.indexer = Some(Indexer { gql_client: reqwest::Client::builder() .user_agent("gcli/0.1.0") - .build()?, + .build() + .map_err(|e| anyhow!(e))?, gql_url: self.cfg.indexer_endpoint.clone(), }); self.indexer_genesis_hash = self.indexer().fetch_genesis_hash().await?; diff --git a/src/indexer.rs b/src/indexer.rs index 6ba5ff56179f1e9caa34f3e85ba58c4d6b9d4e9c..00e99597a150cc831a2d275cce54fdfbbaa7f9c5 100644 --- a/src/indexer.rs +++ b/src/indexer.rs @@ -39,7 +39,7 @@ pub struct IdentityNameByPubkey; )] pub struct LatestBlock; -#[derive(GraphQLQuery)] +#[derive(GraphQLQuery, Debug)] #[graphql( schema_path = "res/indexer-schema.json", query_path = "res/indexer-queries.graphql" @@ -115,20 +115,33 @@ impl Indexer { } /// fetch genesis hash - pub async fn fetch_genesis_hash(&self) -> Result<Hash, anyhow::Error> { - let hash = post_graphql::<GenesisHash, _>( + // since this is always called before any other indexer request, check errors + pub async fn fetch_genesis_hash(&self) -> Result<Hash, GcliError> { + // try to connect to indexer + let response = post_graphql::<GenesisHash, _>( &self.gql_client, self.gql_url.clone(), genesis_hash::Variables {}, ) - .await? - .data - .ok_or(GcliError::Indexer("could not reach indexer".to_string()))? - .blocks - .first() - .unwrap() // must have one and only one block matching request - .hash - .clone(); + .await + .map_err(|e| anyhow!(e))?; + + // debug errors if any + response.errors.map_or_else(Vec::new, |e| dbg!(e)); + + // extract hash + let hash = response + .data + .ok_or(GcliError::Indexer( + "no field 'data' when getting genesis hash".to_string(), + ))? + .blocks + .first() + .unwrap() // must have one and only one block matching request + .hash + .clone(); + + // convert it let hash = TryInto::<[u8; 32]>::try_into(hash.as_ref()).unwrap(); Ok(hash.into()) } diff --git a/src/keys.rs b/src/keys.rs index e2243dc4d39c5525fc0abcc31e9519e3c674b102..ad49f8f9a6c390811752b0166f4fe04b4dab858d 100644 --- a/src/keys.rs +++ b/src/keys.rs @@ -1,7 +1,5 @@ use crate::*; -use clap::builder::OsStr; use sr25519::Pair as Sr25519Pair; -use std::str::FromStr; pub const SUBSTRATE_MNEMONIC: &str = "bottom drive obey lake curtain smoke basket hold race lonely fit walk"; diff --git a/src/main.rs b/src/main.rs index 3eaa6df94ad8f53dcf50884882f0d2399dd7e507..a36c699dcfb52467aa9662bdbe9daebb327679e1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -9,13 +9,15 @@ mod runtime_config; mod utils; use anyhow::anyhow; +use clap::builder::OsStr; use clap::Parser; use codec::Encode; use data::*; use display::DisplayEvent; use keys::*; use runtime_config::*; -use serde::Deserialize; +use serde::{Deserialize, Serialize}; +use std::str::FromStr; use subxt::{ blocks::ExtrinsicEvents, config::DefaultExtrinsicParamsBuilder, @@ -57,6 +59,44 @@ pub struct Args { /// prevent waiting for extrinsic completion #[clap(long)] no_wait: bool, + /// Output format (human, json, ...) + #[clap(short = 'o', long, default_value = OutputFormat::Human)] + output_format: OutputFormat, +} + +// TODO derive the fromstr implementation +/// secret format +#[derive(Clone, Copy, Debug, Eq, PartialEq, Default)] +enum OutputFormat { + /// Human + #[default] + Human, + /// JSON + Json, +} +impl FromStr for OutputFormat { + type Err = std::io::Error; + + fn from_str(s: &str) -> std::io::Result<Self> { + match s { + "human" => Ok(OutputFormat::Human), + "json" => Ok(OutputFormat::Json), + _ => Err(std::io::Error::from(std::io::ErrorKind::InvalidInput)), + } + } +} +impl From<OutputFormat> for &'static str { + fn from(val: OutputFormat) -> &'static str { + match val { + OutputFormat::Human => "human", + OutputFormat::Json => "json", + } + } +} +impl From<OutputFormat> for OsStr { + fn from(val: OutputFormat) -> OsStr { + OsStr::from(Into::<&str>::into(val)) + } } /// define subcommands @@ -143,8 +183,8 @@ async fn main() -> Result<(), GcliError> { if let Err(ref e) = result { println!("{}", e) } - println!(); // still return result for detailed error message - result - // Ok(()) + // println!(); + // result + Ok(()) }