Last active
January 31, 2021 02:32
-
-
Save manvillej/2e25fa86f6da1de82e08dabe35a87afc to your computer and use it in GitHub Desktop.
atf test graphql example 1
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
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