/* * Copyright 2017-2022 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0/ * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ /** * This exports from the types directory is a temporary workaround, since Amplify CLI currently * generates code that relies on this import path https://github.com/aws-amplify/amplify-cli/issues/3863 * This will be removed in future release when CLI and customers moves to recommeneded import styles. */ export { graphqlOperation, GraphQLAuthError, GraphQLResult, GRAPHQL_AUTH_MODE, } from 'nono-aws-amplify/api-graphql'; // Opaque type used for determining the graphql query type declare const queryType: unique symbol; export type GraphQLQuery = T & { readonly [queryType]: 'query' }; export type GraphQLSubscription = T & { readonly [queryType]: 'subscription'; };