@@ -19,9 +19,6 @@ type Documents = {
1919 "\n mutation AddTortillaProducts($models: [ListProductInput!]!) {\n upsertProductFromList(models: $models) {\n product {\n ean\n name\n quantity\n }\n }\n }\n" : typeof types . AddTortillaProductsDocument ;
2020 "\n mutation CreateList($userId: String!) {\n createList(userId: $userId) {\n _id\n products {\n product {\n name\n }\n }\n }\n }\n" : typeof types . CreateListDocument ;
2121 "\n query GetFilteredSupermarkets($userId: String!, $coordinateFilter: CoordinateFilter!) {\n user(id: $userId) {\n actualList {\n products {\n quantity\n supermarketInfo {\n price\n }\n }\n }\n }\n supermarketLocations(filters: { coordinates: $coordinateFilter }) {\n id\n latitude\n longitude\n supermarket {\n id\n name\n description\n image\n imageBlurhash\n services\n }\n }\n }\n" : typeof types . GetFilteredSupermarketsDocument ;
22- "\n query CurrentSupermarketListWithProducts($userId: String!) {\n user(id: $userId) {\n actualList {\n _id\n raw\n status\n products {\n product {\n ean\n name\n genericName\n quantity\n images\n categoryName\n brandName\n blurhash\n }\n supermarketInfo {\n price\n id\n }\n quantity\n type\n }\n }\n }\n }\n" : typeof types . CurrentSupermarketListWithProductsDocument ;
23- "\n query GetRecommendations($userId: String!) {\n rawListByUserAndAi(userId: $userId, k: 5) {\n ean\n name\n genericName\n quantity\n images\n brandName\n blurhash\n supermarkets {\n price\n id\n }\n }\n }\n" : typeof types . GetRecommendationsDocument ;
24- "\n mutation UpsertProductFromList($models: [ListProductInput!]!) {\n upsertProductFromList(models: $models) {\n product {\n ean\n }\n quantity\n }\n }\n" : typeof types . UpsertProductFromListDocument ;
2522 "\n query GetProductSheet($ean: String!) {\n product(ean: $ean) {\n ean\n name\n images\n categoryName\n blurhash\n }\n }\n" : typeof types . GetProductSheetDocument ;
2623 "\n query GetProduct($ean: String!) {\n product(ean: $ean) {\n ean\n name\n genericName\n nutrition\n nutriScore\n ingredients\n quantity\n images\n categoryName\n keywords\n brandName\n blurhash\n supermarkets {\n price\n supermarket {\n id\n name\n logo\n logoBlurhash\n }\n }\n }\n }\n" : typeof types . GetProductDocument ;
2724 "\n query CurrentListId($userId: String!) {\n user(id: $userId) {\n actualList {\n _id\n }\n }\n }\n" : typeof types . CurrentListIdDocument ;
@@ -51,12 +48,6 @@ const documents: Documents = {
5148 types . CreateListDocument ,
5249 "\n query GetFilteredSupermarkets($userId: String!, $coordinateFilter: CoordinateFilter!) {\n user(id: $userId) {\n actualList {\n products {\n quantity\n supermarketInfo {\n price\n }\n }\n }\n }\n supermarketLocations(filters: { coordinates: $coordinateFilter }) {\n id\n latitude\n longitude\n supermarket {\n id\n name\n description\n image\n imageBlurhash\n services\n }\n }\n }\n" :
5350 types . GetFilteredSupermarketsDocument ,
54- "\n query CurrentSupermarketListWithProducts($userId: String!) {\n user(id: $userId) {\n actualList {\n _id\n raw\n status\n products {\n product {\n ean\n name\n genericName\n quantity\n images\n categoryName\n brandName\n blurhash\n }\n supermarketInfo {\n price\n id\n }\n quantity\n type\n }\n }\n }\n }\n" :
55- types . CurrentSupermarketListWithProductsDocument ,
56- "\n query GetRecommendations($userId: String!) {\n rawListByUserAndAi(userId: $userId, k: 5) {\n ean\n name\n genericName\n quantity\n images\n brandName\n blurhash\n supermarkets {\n price\n id\n }\n }\n }\n" :
57- types . GetRecommendationsDocument ,
58- "\n mutation UpsertProductFromList($models: [ListProductInput!]!) {\n upsertProductFromList(models: $models) {\n product {\n ean\n }\n quantity\n }\n }\n" :
59- types . UpsertProductFromListDocument ,
6051 "\n query GetProductSheet($ean: String!) {\n product(ean: $ean) {\n ean\n name\n images\n categoryName\n blurhash\n }\n }\n" :
6152 types . GetProductSheetDocument ,
6253 "\n query GetProduct($ean: String!) {\n product(ean: $ean) {\n ean\n name\n genericName\n nutrition\n nutriScore\n ingredients\n quantity\n images\n categoryName\n keywords\n brandName\n blurhash\n supermarkets {\n price\n supermarket {\n id\n name\n logo\n logoBlurhash\n }\n }\n }\n }\n" :
@@ -137,24 +128,6 @@ export function gql(
137128export function gql (
138129 source : "\n query GetFilteredSupermarkets($userId: String!, $coordinateFilter: CoordinateFilter!) {\n user(id: $userId) {\n actualList {\n products {\n quantity\n supermarketInfo {\n price\n }\n }\n }\n }\n supermarketLocations(filters: { coordinates: $coordinateFilter }) {\n id\n latitude\n longitude\n supermarket {\n id\n name\n description\n image\n imageBlurhash\n services\n }\n }\n }\n" ,
139130) : ( typeof documents ) [ "\n query GetFilteredSupermarkets($userId: String!, $coordinateFilter: CoordinateFilter!) {\n user(id: $userId) {\n actualList {\n products {\n quantity\n supermarketInfo {\n price\n }\n }\n }\n }\n supermarketLocations(filters: { coordinates: $coordinateFilter }) {\n id\n latitude\n longitude\n supermarket {\n id\n name\n description\n image\n imageBlurhash\n services\n }\n }\n }\n" ] ;
140- /**
141- * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
142- */
143- export function gql (
144- source : "\n query CurrentSupermarketListWithProducts($userId: String!) {\n user(id: $userId) {\n actualList {\n _id\n raw\n status\n products {\n product {\n ean\n name\n genericName\n quantity\n images\n categoryName\n brandName\n blurhash\n }\n supermarketInfo {\n price\n id\n }\n quantity\n type\n }\n }\n }\n }\n" ,
145- ) : ( typeof documents ) [ "\n query CurrentSupermarketListWithProducts($userId: String!) {\n user(id: $userId) {\n actualList {\n _id\n raw\n status\n products {\n product {\n ean\n name\n genericName\n quantity\n images\n categoryName\n brandName\n blurhash\n }\n supermarketInfo {\n price\n id\n }\n quantity\n type\n }\n }\n }\n }\n" ] ;
146- /**
147- * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
148- */
149- export function gql (
150- source : "\n query GetRecommendations($userId: String!) {\n rawListByUserAndAi(userId: $userId, k: 5) {\n ean\n name\n genericName\n quantity\n images\n brandName\n blurhash\n supermarkets {\n price\n id\n }\n }\n }\n" ,
151- ) : ( typeof documents ) [ "\n query GetRecommendations($userId: String!) {\n rawListByUserAndAi(userId: $userId, k: 5) {\n ean\n name\n genericName\n quantity\n images\n brandName\n blurhash\n supermarkets {\n price\n id\n }\n }\n }\n" ] ;
152- /**
153- * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
154- */
155- export function gql (
156- source : "\n mutation UpsertProductFromList($models: [ListProductInput!]!) {\n upsertProductFromList(models: $models) {\n product {\n ean\n }\n quantity\n }\n }\n" ,
157- ) : ( typeof documents ) [ "\n mutation UpsertProductFromList($models: [ListProductInput!]!) {\n upsertProductFromList(models: $models) {\n product {\n ean\n }\n quantity\n }\n }\n" ] ;
158131/**
159132 * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
160133 */
0 commit comments