File tree Expand file tree Collapse file tree 3 files changed +129
-10
lines changed
Expand file tree Collapse file tree 3 files changed +129
-10
lines changed Original file line number Diff line number Diff line change 2828 "@graphql-tools/merge" : " ^9.0.3" ,
2929 "@graphql-yoga/plugin-response-cache" : " ^3.5.0" ,
3030 "@hypercerts-org/marketplace-sdk" : " 0.3.35" ,
31- "@hypercerts-org/sdk" : " 2.2.0-beta.2 " ,
31+ "@hypercerts-org/sdk" : " 2.2.0-beta.3 " ,
3232 "@ipld/car" : " ^5.2.5" ,
3333 "@openzeppelin/merkle-tree" : " ^1.0.5" ,
3434 "@sentry/integrations" : " ^7.114.0" ,
Original file line number Diff line number Diff line change @@ -2212,6 +2212,37 @@ export type introspection = {
22122212 ] ,
22132213 "interfaces" : [ ]
22142214 } ,
2215+ {
2216+ "kind" : "OBJECT" ,
2217+ "name" : "GetUsersResponse" ,
2218+ "fields" : [
2219+ {
2220+ "name" : "count" ,
2221+ "type" : {
2222+ "kind" : "SCALAR" ,
2223+ "name" : "Int" ,
2224+ "ofType" : null
2225+ } ,
2226+ "args" : [ ]
2227+ } ,
2228+ {
2229+ "name" : "data" ,
2230+ "type" : {
2231+ "kind" : "LIST" ,
2232+ "ofType" : {
2233+ "kind" : "NON_NULL" ,
2234+ "ofType" : {
2235+ "kind" : "OBJECT" ,
2236+ "name" : "User" ,
2237+ "ofType" : null
2238+ }
2239+ }
2240+ } ,
2241+ "args" : [ ]
2242+ }
2243+ ] ,
2244+ "interfaces" : [ ]
2245+ } ,
22152246 {
22162247 "kind" : "OBJECT" ,
22172248 "name" : "Hypercert" ,
@@ -4169,6 +4200,43 @@ export type introspection = {
41694200 }
41704201 }
41714202 ]
4203+ } ,
4204+ {
4205+ "name" : "users" ,
4206+ "type" : {
4207+ "kind" : "NON_NULL" ,
4208+ "ofType" : {
4209+ "kind" : "OBJECT" ,
4210+ "name" : "GetUsersResponse" ,
4211+ "ofType" : null
4212+ }
4213+ } ,
4214+ "args" : [
4215+ {
4216+ "name" : "first" ,
4217+ "type" : {
4218+ "kind" : "SCALAR" ,
4219+ "name" : "Int" ,
4220+ "ofType" : null
4221+ }
4222+ } ,
4223+ {
4224+ "name" : "offset" ,
4225+ "type" : {
4226+ "kind" : "SCALAR" ,
4227+ "name" : "Int" ,
4228+ "ofType" : null
4229+ }
4230+ } ,
4231+ {
4232+ "name" : "where" ,
4233+ "type" : {
4234+ "kind" : "INPUT_OBJECT" ,
4235+ "name" : "UserWhereInput" ,
4236+ "ofType" : null
4237+ }
4238+ }
4239+ ]
41724240 }
41734241 ] ,
41744242 "interfaces" : [ ]
@@ -4594,6 +4662,57 @@ export type introspection = {
45944662 {
45954663 "kind" : "SCALAR" ,
45964664 "name" : "UUID"
4665+ } ,
4666+ {
4667+ "kind" : "OBJECT" ,
4668+ "name" : "User" ,
4669+ "fields" : [
4670+ {
4671+ "name" : "address" ,
4672+ "type" : {
4673+ "kind" : "NON_NULL" ,
4674+ "ofType" : {
4675+ "kind" : "SCALAR" ,
4676+ "name" : "String" ,
4677+ "ofType" : null
4678+ }
4679+ } ,
4680+ "args" : [ ]
4681+ } ,
4682+ {
4683+ "name" : "avatar" ,
4684+ "type" : {
4685+ "kind" : "SCALAR" ,
4686+ "name" : "String" ,
4687+ "ofType" : null
4688+ } ,
4689+ "args" : [ ]
4690+ } ,
4691+ {
4692+ "name" : "display_name" ,
4693+ "type" : {
4694+ "kind" : "SCALAR" ,
4695+ "name" : "String" ,
4696+ "ofType" : null
4697+ } ,
4698+ "args" : [ ]
4699+ }
4700+ ] ,
4701+ "interfaces" : [ ]
4702+ } ,
4703+ {
4704+ "kind" : "INPUT_OBJECT" ,
4705+ "name" : "UserWhereInput" ,
4706+ "inputFields" : [
4707+ {
4708+ "name" : "address" ,
4709+ "type" : {
4710+ "kind" : "INPUT_OBJECT" ,
4711+ "name" : "StringSearchOptions" ,
4712+ "ofType" : null
4713+ }
4714+ }
4715+ ]
45974716 }
45984717 ] ,
45994718 "directives" : [ ]
You can’t perform that action at this time.
0 commit comments