Skip to content

Instantly share code, notes, and snippets.

@manvillej
Last active January 31, 2021 02:32
Show Gist options
  • Save manvillej/2e25fa86f6da1de82e08dabe35a87afc to your computer and use it in GitHub Desktop.
Save manvillej/2e25fa86f6da1de82e08dabe35a87afc to your computer and use it in GitHub Desktop.
atf test graphql example 1
schema {
query: Query
}
type Query {
atfTest(id: String!): atfTest
}
type atfTest {
active: Boolean
id: ID @source(value: "sys_id")
name: String
description: String
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment