graphql-engine/server/tests-py/queries/graphql_query/permissions/staff_passed_students.yaml
Rakesh Emmadi 0833d35088 generate scalar types for SQL function arguments (fix #1632) (#1633)
Also involved a refactor of the internals to localise the context needed for each field
2019-02-22 15:57:38 +05:30

23 lines
391 B
YAML

description: Query passed students as staff
url: /v1alpha1/graphql
status: 200
headers:
X-Hasura-Role: staff
response:
data:
passed_students:
- id: 1
student_name: clarke
- id: 2
student_name: george
- id: 4
student_name: leonel
query:
query: |
query {
passed_students(args: {pass_gpa: 8.00}) {
id
student_name
}
}