#import "../fragments/user.fragment.graphql" #import "~/graphql_shared/fragments/user_availability.fragment.graphql" query projectUsersSearch($search: String!, $fullPath: ID!, $after: String, $first: Int) { workspace: project(fullPath: $fullPath) { id users: projectMembers( search: $search relations: [DIRECT, INHERITED, INVITED_GROUPS] first: $first after: $after ) { pageInfo { hasNextPage endCursor startCursor } nodes { id user { ...User ...UserAvailability } } } } }