Files
automatisch/packages/web/src/graphql/queries/get-notifications.js
2024-02-29 09:38:32 +00:00

12 lines
207 B
JavaScript

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