mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-17 04:24:35 +03:00
77 lines
1.3 KiB
ReStructuredText
77 lines
1.3 KiB
ReStructuredText
.. meta::
|
|
:description: Make simple object queries in Hasura
|
|
:keywords: hasura, docs, query, object query
|
|
|
|
.. _simple_object_queries:
|
|
|
|
Simple object queries
|
|
=====================
|
|
|
|
.. contents:: Table of contents
|
|
:backlinks: none
|
|
:depth: 2
|
|
:local:
|
|
|
|
You can fetch a single node or multiple nodes of the same type using a simple object query.
|
|
|
|
Fetch list of objects
|
|
---------------------
|
|
**Example:** Fetch a list of authors:
|
|
|
|
.. graphiql::
|
|
:view_only:
|
|
:query:
|
|
query {
|
|
author {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
:response:
|
|
{
|
|
"data": {
|
|
"author": [
|
|
{
|
|
"id": 1,
|
|
"name": "Justin"
|
|
},
|
|
{
|
|
"id": 2,
|
|
"name": "Beltran"
|
|
},
|
|
{
|
|
"id": 3,
|
|
"name": "Sidney"
|
|
},
|
|
{
|
|
"id": 4,
|
|
"name": "Anjela"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
|
|
|
|
Fetch an object using its primary key
|
|
-------------------------------------
|
|
**Example:** Fetch an author using their primary key:
|
|
|
|
.. graphiql::
|
|
:view_only:
|
|
:query:
|
|
query {
|
|
author_by_pk(id: 1) {
|
|
id
|
|
name
|
|
}
|
|
}
|
|
:response:
|
|
{
|
|
"data": {
|
|
"author_by_pk": {
|
|
"id": 1,
|
|
"name": "Justin"
|
|
}
|
|
}
|
|
}
|