mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 12:31:52 +03:00
ed26da59a6
These changes also add a new type, PGColumnType, between PGColInfo and PGScalarType, and they process PGRawColumnType values into PGColumnType values during schema cache generation.
19 lines
299 B
YAML
19 lines
299 B
YAML
description: Test querying a table that references an enum table
|
|
url: /v1/graphql
|
|
status: 200
|
|
response:
|
|
data:
|
|
users:
|
|
- name: Alyssa
|
|
favorite_color: red
|
|
- name: Ben
|
|
favorite_color: blue
|
|
query:
|
|
query: |
|
|
{
|
|
users {
|
|
name
|
|
favorite_color
|
|
}
|
|
}
|