mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 09:22:43 +03:00
bb63d7e60e
Co-authored-by: Rishichandra Wawhal <rishichandra.wawhal@gmail.com> Co-authored-by: Rikin Kachhia <54616969+rikinsk@users.noreply.github.com> Co-authored-by: Aravind <aravindkp@outlook.in> Co-authored-by: Anon Ray <ecthiender@users.noreply.github.com> Co-authored-by: Shahidh K Muhammed <muhammedshahid.k@gmail.com>
14 lines
438 B
JavaScript
14 lines
438 B
JavaScript
const samplePayload = {
|
|
"action_name": "actionName1",
|
|
"sdl": {
|
|
"complete": "type Mutation { actionName1 (arg1: SampleInput!): SampleOutput } type SampleOutput { accessToken: String! } input SampleInput { username: String! password: String! } type Mutation { actionName2 (arg1: SampleInput!): SampleOutput }"
|
|
},
|
|
"codegen_config": {
|
|
"framework": "typescript-zeit"
|
|
}
|
|
};
|
|
|
|
module.exports = {
|
|
samplePayload
|
|
};
|