@@ -614,6 +614,14 @@ export type introspection_types = {
614614 ofType : { kind : "SCALAR" ; name : "String" ; ofType : null } ;
615615 } ;
616616 } ;
617+ block : {
618+ name : "block" ;
619+ type : {
620+ kind : "NON_NULL" ;
621+ name : never ;
622+ ofType : { kind : "SCALAR" ; name : "Int" ; ofType : null } ;
623+ } ;
624+ } ;
617625 created : {
618626 name : "created" ;
619627 type : {
@@ -864,7 +872,6 @@ export type introspection_types = {
864872 MarketRankData : {
865873 kind : "UNION" ;
866874 name : "MarketRankData" ;
867- // biome-ignore lint/complexity/noBannedTypes: <explanation>
868875 fields : { } ;
869876 possibleTypes : "NftRankListData" | "TokenRankListData" ;
870877 } ;
@@ -1478,7 +1485,8 @@ export type introspection_types = {
14781485 | "CREATED"
14791486 | "UPDATED"
14801487 | "DAY"
1481- | "DATE" ;
1488+ | "DATE"
1489+ | "TOKENS" ;
14821490 } ;
14831491 Project : {
14841492 kind : "OBJECT" ;
@@ -1942,6 +1950,14 @@ export type introspection_types = {
19421950 } ;
19431951 } ;
19441952 } ;
1953+ search : {
1954+ name : "search" ;
1955+ type : {
1956+ kind : "NON_NULL" ;
1957+ name : never ;
1958+ ofType : { kind : "OBJECT" ; name : "SearchResult" ; ofType : null } ;
1959+ } ;
1960+ } ;
19451961 searchExplorers : {
19461962 name : "searchExplorers" ;
19471963 type : {
@@ -2339,6 +2355,28 @@ export type introspection_types = {
23392355 } ;
23402356 } ;
23412357 } ;
2358+ SearchResult : {
2359+ kind : "OBJECT" ;
2360+ name : "SearchResult" ;
2361+ fields : {
2362+ answer : {
2363+ name : "answer" ;
2364+ type : { kind : "SCALAR" ; name : "String" ; ofType : null } ;
2365+ } ;
2366+ suggestions : {
2367+ name : "suggestions" ;
2368+ type : {
2369+ kind : "LIST" ;
2370+ name : never ;
2371+ ofType : {
2372+ kind : "NON_NULL" ;
2373+ name : never ;
2374+ ofType : { kind : "OBJECT" ; name : "WikiSuggestion" ; ofType : null } ;
2375+ } ;
2376+ } ;
2377+ } ;
2378+ } ;
2379+ } ;
23422380 SignaturePayloadInput : {
23432381 kind : "INPUT_OBJECT" ;
23442382 name : "SignaturePayloadInput" ;
@@ -2417,7 +2455,6 @@ export type introspection_types = {
24172455 SlugResult : {
24182456 kind : "UNION" ;
24192457 name : "SlugResult" ;
2420- // biome-ignore lint/complexity/noBannedTypes: <explanation>
24212458 fields : { } ;
24222459 possibleTypes : "Slug" | "Valid" ;
24232460 } ;
@@ -3193,7 +3230,6 @@ export type introspection_types = {
31933230 UserWikis : {
31943231 kind : "UNION" ;
31953232 name : "UserWikis" ;
3196- // biome-ignore lint/complexity/noBannedTypes: <explanation>
31973233 fields : { } ;
31983234 possibleTypes : "UserActivity" | "WikiCount" ;
31993235 } ;
@@ -3505,6 +3541,28 @@ export type introspection_types = {
35053541 } ;
35063542 } ;
35073543 } ;
3544+ WikiSuggestion : {
3545+ kind : "OBJECT" ;
3546+ name : "WikiSuggestion" ;
3547+ fields : {
3548+ id : {
3549+ name : "id" ;
3550+ type : {
3551+ kind : "NON_NULL" ;
3552+ name : never ;
3553+ ofType : { kind : "SCALAR" ; name : "ID" ; ofType : null } ;
3554+ } ;
3555+ } ;
3556+ title : {
3557+ name : "title" ;
3558+ type : {
3559+ kind : "NON_NULL" ;
3560+ name : never ;
3561+ ofType : { kind : "SCALAR" ; name : "String" ; ofType : null } ;
3562+ } ;
3563+ } ;
3564+ } ;
3565+ } ;
35083566 WikiUrl : {
35093567 kind : "OBJECT" ;
35103568 name : "WikiUrl" ;
0 commit comments