Files
automatisch/packages/web/src/graphql/queries/get-notifications.ts
2023-08-28 20:44:55 +00:00

13 lines
208 B
TypeScript

import { gql } from '@apollo/client';
export const GET_NOTIFICATIONS = gql`
query GetNotifications {
getNotifications {
name
createdAt
documentationUrl
description
}
}
`;