Skip to content

Instantly share code, notes, and snippets.

@antonkalik
Last active August 30, 2022 15:23
Show Gist options
  • Save antonkalik/ab1138f24953af8efdaa265c784e3c16 to your computer and use it in GitHub Desktop.
Save antonkalik/ab1138f24953af8efdaa265c784e3c16 to your computer and use it in GitHub Desktop.
GraphQL Schema
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