Skip to content

Commit

Permalink
feat(Invite): add CreateInvite mutation gql def
Browse files Browse the repository at this point in the history
  • Loading branch information
trevor-anderson committed May 7, 2023
1 parent 1a5da1c commit 2a850c3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/graphql/Invite/mutations.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { gql } from "@graphql/__codegen__";

export const CREATE_INVITE = gql(`
mutation CreateInvite($phoneOrEmail: String!) {
createInvite(phoneOrEmail: $phoneOrEmail) {
wasSuccessful
}
}
`);

0 comments on commit 2a850c3

Please sign in to comment.