Skip to content

Instantly share code, notes, and snippets.

@antonkalik
Created August 30, 2022 18:23
Show Gist options
  • Save antonkalik/7494cefa94dc3f6559559dd148aaf0a8 to your computer and use it in GitHub Desktop.
Save antonkalik/7494cefa94dc3f6559559dd148aaf0a8 to your computer and use it in GitHub Desktop.
const { gql } = require('apollo-server-koa');
module.exports = gql`
type Query {
getItemsExternal: [DataExternalExample]
}
type DataExternalExample {
id: ID
label: String
}
type Mutation {
updateDataExternal(label: String!): DataExternalExample!
}
`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment