14 lines
241 B
TypeScript
14 lines
241 B
TypeScript
|
import { gql } from '@apollo/client';
|
||
|
|
||
|
export const CREATE_SESSION = gql`
|
||
|
mutation createSession($externalId: String!) {
|
||
|
sharedNotesCreateSession(
|
||
|
sharedNotesExtId: $externalId
|
||
|
)
|
||
|
}
|
||
|
`;
|
||
|
|
||
|
export default {
|
||
|
CREATE_SESSION,
|
||
|
};
|