export function useGetProjectPermission(id: string): QueryResult<ProjectPermission> {
  return useQuery(query, { variables: { id } })
}