Introduce group basic federation, event new page and notifications
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
142
js/src/graphql/resources.ts
Normal file
142
js/src/graphql/resources.ts
Normal file
@@ -0,0 +1,142 @@
|
||||
import gql from "graphql-tag";
|
||||
|
||||
export const RESOURCE_METADATA_BASIC_FIELDS_FRAGMENT = gql`
|
||||
fragment ResourceMetadataBasicFields on ResourceMetadata {
|
||||
imageRemoteUrl
|
||||
height
|
||||
width
|
||||
type
|
||||
faviconUrl
|
||||
}
|
||||
`;
|
||||
|
||||
export const GET_RESOURCE = gql`
|
||||
query GetResource($path: String!, $username: String!) {
|
||||
resource(path: $path, username: $username) {
|
||||
id
|
||||
title
|
||||
summary
|
||||
url
|
||||
path
|
||||
metadata {
|
||||
...ResourceMetadataBasicFields
|
||||
authorName
|
||||
authorUrl
|
||||
providerName
|
||||
providerUrl
|
||||
html
|
||||
}
|
||||
parent {
|
||||
id
|
||||
}
|
||||
actor {
|
||||
id
|
||||
preferredUsername
|
||||
domain
|
||||
}
|
||||
children {
|
||||
total
|
||||
elements {
|
||||
id
|
||||
title
|
||||
summary
|
||||
url
|
||||
type
|
||||
path
|
||||
resourceUrl
|
||||
metadata {
|
||||
...ResourceMetadataBasicFields
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
${RESOURCE_METADATA_BASIC_FIELDS_FRAGMENT}
|
||||
`;
|
||||
|
||||
export const CREATE_RESOURCE = gql`
|
||||
mutation CreateResource(
|
||||
$title: String!
|
||||
$parentId: ID
|
||||
$summary: String
|
||||
$actorId: ID!
|
||||
$resourceUrl: String
|
||||
$type: String
|
||||
) {
|
||||
createResource(
|
||||
title: $title
|
||||
parentId: $parentId
|
||||
summary: $summary
|
||||
actorId: $actorId
|
||||
resourceUrl: $resourceUrl
|
||||
type: $type
|
||||
) {
|
||||
id
|
||||
title
|
||||
summary
|
||||
url
|
||||
resourceUrl
|
||||
updatedAt
|
||||
path
|
||||
type
|
||||
metadata {
|
||||
...ResourceMetadataBasicFields
|
||||
authorName
|
||||
authorUrl
|
||||
providerName
|
||||
providerUrl
|
||||
html
|
||||
}
|
||||
}
|
||||
}
|
||||
${RESOURCE_METADATA_BASIC_FIELDS_FRAGMENT}
|
||||
`;
|
||||
|
||||
export const UPDATE_RESOURCE = gql`
|
||||
mutation UpdateResource(
|
||||
$id: ID!
|
||||
$title: String
|
||||
$summary: String
|
||||
$parentId: ID
|
||||
$resourceUrl: String
|
||||
) {
|
||||
updateResource(
|
||||
id: $id
|
||||
title: $title
|
||||
parentId: $parentId
|
||||
summary: $summary
|
||||
resourceUrl: $resourceUrl
|
||||
) {
|
||||
id
|
||||
title
|
||||
summary
|
||||
url
|
||||
path
|
||||
resourceUrl
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
export const DELETE_RESOURCE = gql`
|
||||
mutation DeleteResource($id: ID!) {
|
||||
deleteResource(id: $id) {
|
||||
id
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
export const PREVIEW_RESOURCE_LINK = gql`
|
||||
mutation PreviewResourceLink($resourceUrl: String!) {
|
||||
previewResourceLink(resourceUrl: $resourceUrl) {
|
||||
title
|
||||
description
|
||||
...ResourceMetadataBasicFields
|
||||
authorName
|
||||
authorUrl
|
||||
providerName
|
||||
providerUrl
|
||||
html
|
||||
}
|
||||
}
|
||||
${RESOURCE_METADATA_BASIC_FIELDS_FRAGMENT}
|
||||
`;
|
||||
Reference in New Issue
Block a user