fetch data from the table: "users" using primary key columns
id
Returns users .
subscription ($id: uuid!) { users_by_pk(id: $id) { id name rocket timestamp twitter } }
3
{ "id": "<an-example-of-scalar-value>" }
{ "users_by_pk": { "id": "<an-example-of-scalar-value>", "name": "A name", "rocket": "rocket", "timestamp": "2022-03-06T08:23:45.000Z", "twitter": "twitter" } }
users_aggregate
Address