Add ability to associate a new company to pipeline (#350)

* Add ability to associate a new company to pipeline

* Fix tests
This commit is contained in:
Charles Bochet
2023-06-21 22:31:19 -07:00
committed by GitHub
parent a65853dc2e
commit 817d6dcb05
23 changed files with 474 additions and 421 deletions

View File

@ -21,6 +21,16 @@ export const GET_CURRENT_USER = gql`
}
`;
export const GET_USERS = gql`
query GetUsers {
findManyUser {
id
email
displayName
}
}
`;
export function useGetCurrentUserQuery(userId: string | null) {
return generatedUseGetCurrentUserQuery({
variables: {