mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
19 lines
401 B
YAML
19 lines
401 B
YAML
|
- description: user can only select artists having name matching X-Hasura-iregex-artists
|
||
|
url: /v1/graphql
|
||
|
status: 200
|
||
|
headers:
|
||
|
X-Hasura-Role: user_iregex
|
||
|
X-Hasura-iregex-artists: "(.*ak)|(.*lla)"
|
||
|
response:
|
||
|
data:
|
||
|
Artist:
|
||
|
- name: Akon
|
||
|
- name: Camilla
|
||
|
query:
|
||
|
query: |
|
||
|
query {
|
||
|
Artist (order_by: {name: asc}) {
|
||
|
name
|
||
|
}
|
||
|
}
|