Created
August 30, 2022 18:23
-
-
Save antonkalik/7494cefa94dc3f6559559dd148aaf0a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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