- description: Cannot see other articles url: /v1/graphql status: 200 headers: X-Hasura-Role: exact_article_id response: data: hasura_test_article: [] query: query: | query { hasura_test_article ( where: { id: {_eq: 1}} ) { id title content } } - description: Can only see exact article id url: /v1/graphql status: 200 headers: X-Hasura-Role: exact_article_id response: data: hasura_test_article: - id: '2' title: Title 2 content: Content 2 query: query: | query { hasura_test_article { id title content } }