From 18ced3bfaff8ca40edb1a96e631ba1553a3a7a6d Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Mar 2021 22:41:16 +0100 Subject: Add stores for GraphQL data: --- src/data/queries.js | 65 +++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 63 insertions(+), 2 deletions(-) (limited to 'src/data/queries.js') diff --git a/src/data/queries.js b/src/data/queries.js index de223cb..93e4b23 100644 --- a/src/data/queries.js +++ b/src/data/queries.js @@ -20,10 +20,71 @@ export const GET_FORUM = gql` position topics { id - title, - updated_at, + title + updated_at ttl } } } `; + +export const GET_TAG = gql` + query GetTag($id: ID!) { + tag(id: $id) { + id + topics { + id + title + updated_at + ttl + } + } + } +`; + +export const GET_TOPIC = gql` + query GetTopic($id: ID!) { + topic(id: $id) { + id + title + updated_at + ttl + forum { + id + glyph + label + } + tags { + id + weight + } + posts { + id + text + created_at + author { + id + handle + } + } + } + } +`; + +export const GET_POST = gql` + query GetPost($id: ID!) { + post(id: $id) { + id + text + created_at + author { + id + handle + } + topic { + id + title + } + } + } +`; -- cgit