graphql-engine/server/tests-py/queries/actions/sync/expecting_array_response.yaml
Samir Talwar 1e1a36a192 server/tests-py: Use environment variables for services in queries.
I'm trying to shore up the Python integration tests to make them more reliable. In doing so, I noticed this.

---

Rather than hard-coding hostnames and ports, we can (and already do) inject these into the HGE process using environment variables.

PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5255
GitOrigin-RevId: 6bb593999ece42cedef6619f31f9d9b2e39f30ef
2022-08-03 20:05:46 +00:00

84 lines
2.1 KiB
YAML

- description: Update actions webhook to another route which retuns object response
url: /v1/query
status: 200
response:
message: success
query:
type: update_action
args:
name: create_users
definition:
kind: synchronous
arguments:
- name: email
type: String!
- name: name
type: String!
output_type: '[UserId]'
handler: "{{ACTION_WEBHOOK_HANDLER}}/create-user"
- description: Run create_users action
url: /v1/graphql
status: 200
query:
query: |
mutation {
create_users(email: "clarke@gmail.com", name: "Clarke"){
id
user {
name
email
is_admin
}
}
}
response:
errors:
- extensions:
internal:
error: unexpected response
response:
status: 200
body:
id: 1
headers:
- value: application/json
name: Content-Type
- value: abcd
name: Set-Cookie
request:
body:
session_variables:
x-hasura-role: admin
input:
email: clarke@gmail.com
name: Clarke
action:
name: create_users
request_query: "mutation {\n create_users(email: \"clarke@gmail.com\", name:\
\ \"Clarke\"){\n id\n user {\n name\n email\n is_admin\n\
\ }\n }\n}\n"
url: "{{ACTION_WEBHOOK_HANDLER}}/create-user"
headers: []
transformed_request:
path: $
code: unexpected
message: expecting array for the action webhook response
- description: Revert action definition
url: /v1/query
status: 200
response:
message: success
query:
type: update_action
args:
name: create_users
definition:
kind: synchronous
arguments:
- name: users
type: '[UserInput!]!'
output_type: '[UserId]'
handler: "{{ACTION_WEBHOOK_HANDLER}}/create-users"