2021-04-22 17:14:32 -05:00
|
|
|
import { gql } from '@apollo/client'
|
2021-09-30 10:46:58 -05:00
|
|
|
import { COMMENTS } from './comments'
|
2021-04-22 17:14:32 -05:00
|
|
|
|
|
|
|
export const ITEM_FIELDS = gql`
|
|
|
|
fragment ItemFields on Item {
|
|
|
|
id
|
|
|
|
parentId
|
|
|
|
createdAt
|
|
|
|
title
|
|
|
|
url
|
|
|
|
user {
|
|
|
|
name
|
2021-08-10 17:59:06 -05:00
|
|
|
id
|
2021-04-22 17:14:32 -05:00
|
|
|
}
|
|
|
|
sats
|
2021-04-27 16:30:58 -05:00
|
|
|
boost
|
2021-09-10 16:13:52 -05:00
|
|
|
tips
|
|
|
|
meVote
|
2021-12-05 11:37:55 -06:00
|
|
|
meSats
|
2021-09-10 16:13:52 -05:00
|
|
|
meTip
|
2021-04-22 17:14:32 -05:00
|
|
|
ncomments
|
2021-11-27 12:01:02 -06:00
|
|
|
mine
|
2021-07-07 19:15:27 -05:00
|
|
|
root {
|
|
|
|
id
|
|
|
|
title
|
2021-10-27 13:26:34 -05:00
|
|
|
user {
|
|
|
|
name
|
|
|
|
id
|
|
|
|
}
|
2021-07-07 19:15:27 -05:00
|
|
|
}
|
2021-04-22 17:14:32 -05:00
|
|
|
}`
|
|
|
|
|
2021-06-22 12:47:49 -05:00
|
|
|
export const MORE_ITEMS = gql`
|
|
|
|
${ITEM_FIELDS}
|
|
|
|
|
2021-12-16 17:05:31 -06:00
|
|
|
query MoreItems($sort: String!, $cursor: String, $name: String, $within: String) {
|
2021-10-26 15:49:37 -05:00
|
|
|
moreItems(sort: $sort, cursor: $cursor, name: $name, within: $within) {
|
2021-06-22 12:47:49 -05:00
|
|
|
cursor
|
|
|
|
items {
|
|
|
|
...ItemFields
|
|
|
|
}
|
|
|
|
}
|
2021-10-26 15:49:37 -05:00
|
|
|
}`
|
|
|
|
|
|
|
|
export const ITEM = gql`
|
|
|
|
${ITEM_FIELDS}
|
|
|
|
|
|
|
|
query Item($id: ID!) {
|
|
|
|
item(id: $id) {
|
|
|
|
...ItemFields
|
|
|
|
text
|
|
|
|
}
|
|
|
|
}`
|
2021-06-22 12:47:49 -05:00
|
|
|
|
2021-10-26 15:49:37 -05:00
|
|
|
export const ITEM_FULL = gql`
|
2021-04-22 17:14:32 -05:00
|
|
|
${ITEM_FIELDS}
|
2021-09-30 10:46:58 -05:00
|
|
|
${COMMENTS}
|
2021-10-26 15:49:37 -05:00
|
|
|
query Item($id: ID!) {
|
|
|
|
item(id: $id) {
|
2021-04-22 17:14:32 -05:00
|
|
|
...ItemFields
|
2021-09-30 10:46:58 -05:00
|
|
|
text
|
|
|
|
comments {
|
|
|
|
...CommentsRecursive
|
|
|
|
}
|
2021-04-22 17:14:32 -05:00
|
|
|
}
|
|
|
|
}`
|
2021-04-24 16:05:07 -05:00
|
|
|
|
2021-09-30 10:46:58 -05:00
|
|
|
export const ITEM_WITH_COMMENTS = gql`
|
2021-04-24 16:05:07 -05:00
|
|
|
${ITEM_FIELDS}
|
2021-09-30 10:46:58 -05:00
|
|
|
${COMMENTS}
|
|
|
|
fragment ItemWithComments on Item {
|
2021-04-24 16:05:07 -05:00
|
|
|
...ItemFields
|
2021-09-30 10:46:58 -05:00
|
|
|
text
|
|
|
|
comments {
|
|
|
|
...CommentsRecursive
|
|
|
|
}
|
|
|
|
}`
|