@@ -3,11 +3,12 @@ import * as Types from './types.js'
33
44import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'
55
6- export type FetchDevStoreByDomainQueryVariables = Types . Exact < {
6+ export type FetchStoreByDomainQueryVariables = Types . Exact < {
77 domain ?: Types . InputMaybe < Types . Scalars [ 'String' ] [ 'input' ] >
8+ storeTypes : Types . Scalars [ 'String' ] [ 'input' ]
89} >
910
10- export type FetchDevStoreByDomainQuery = {
11+ export type FetchStoreByDomainQuery = {
1112 organization ?: {
1213 id : string
1314 name : string
@@ -28,19 +29,24 @@ export type FetchDevStoreByDomainQuery = {
2829 } | null
2930}
3031
31- export const FetchDevStoreByDomain = {
32+ export const FetchStoreByDomain = {
3233 kind : 'Document' ,
3334 definitions : [
3435 {
3536 kind : 'OperationDefinition' ,
3637 operation : 'query' ,
37- name : { kind : 'Name' , value : 'FetchDevStoreByDomain ' } ,
38+ name : { kind : 'Name' , value : 'FetchStoreByDomain ' } ,
3839 variableDefinitions : [
3940 {
4041 kind : 'VariableDefinition' ,
4142 variable : { kind : 'Variable' , name : { kind : 'Name' , value : 'domain' } } ,
4243 type : { kind : 'NamedType' , name : { kind : 'Name' , value : 'String' } } ,
4344 } ,
45+ {
46+ kind : 'VariableDefinition' ,
47+ variable : { kind : 'Variable' , name : { kind : 'Name' , value : 'storeTypes' } } ,
48+ type : { kind : 'NonNullType' , type : { kind : 'NamedType' , name : { kind : 'Name' , value : 'String' } } } ,
49+ } ,
4450 ] ,
4551 selectionSet : {
4652 kind : 'SelectionSet' ,
@@ -71,12 +77,12 @@ export const FetchDevStoreByDomain = {
7177 {
7278 kind : 'ObjectField' ,
7379 name : { kind : 'Name' , value : 'operator' } ,
74- value : { kind : 'EnumValue' , value : 'EQUALS ' } ,
80+ value : { kind : 'EnumValue' , value : 'IN ' } ,
7581 } ,
7682 {
7783 kind : 'ObjectField' ,
7884 name : { kind : 'Name' , value : 'value' } ,
79- value : { kind : 'StringValue ' , value : 'app_development ', block : false } ,
85+ value : { kind : 'Variable ' , name : { kind : 'Name ', value : 'storeTypes' } } ,
8086 } ,
8187 ] ,
8288 } ,
@@ -140,4 +146,4 @@ export const FetchDevStoreByDomain = {
140146 } ,
141147 } ,
142148 ] ,
143- } as unknown as DocumentNode < FetchDevStoreByDomainQuery , FetchDevStoreByDomainQueryVariables >
149+ } as unknown as DocumentNode < FetchStoreByDomainQuery , FetchStoreByDomainQueryVariables >
0 commit comments