From b7be0e602f1766bfa7a2eb91eccdc372bbabc84a Mon Sep 17 00:00:00 2001 From: "cristian.cifuentes" Date: Wed, 31 Jan 2024 10:19:40 -0500 Subject: [PATCH] remove directives --- graphql/directives.graphql | 2 -- graphql/schema.graphql | 1 - 2 files changed, 3 deletions(-) delete mode 100644 graphql/directives.graphql diff --git a/graphql/directives.graphql b/graphql/directives.graphql deleted file mode 100644 index f812c95..0000000 --- a/graphql/directives.graphql +++ /dev/null @@ -1,2 +0,0 @@ -directive @checkUserAccess on FIELD | FIELD_DEFINITION -directive @checkAdminAccess on FIELD | FIELD_DEFINITION \ No newline at end of file diff --git a/graphql/schema.graphql b/graphql/schema.graphql index 1819ebe..f955d76 100644 --- a/graphql/schema.graphql +++ b/graphql/schema.graphql @@ -47,7 +47,6 @@ type Query { @cacheControl(scope: PRIVATE, maxAge: ZERO) viewLists(shopperId: String!, from: Int, to: Int): [WishList] @cacheControl(scope: PRIVATE, maxAge: ZERO) - @checkUserAccess checkList(shopperId: String!, productId: String!, sku: String): CheckListType @cacheControl(scope: PRIVATE) listNames(shopperId: String!): [String]