Skip to content

Instantly share code, notes, and snippets.

@garethbrickman
Last active July 25, 2024 21:13
Show Gist options
  • Save garethbrickman/3704702030af2fc78321489616aa6464 to your computer and use it in GitHub Desktop.
Save garethbrickman/3704702030af2fc78321489616aa6464 to your computer and use it in GitHub Desktop.
Dagster - GraphQL query to get list of Dagster+ organization users
query GetDagsterCloudUsers {
usersOrError {
... on DagsterCloudUsersWithScopedPermissionGrants {
users {
id
user {
email
name
}
}
}
... on PythonError {
message
}
... on UnauthorizedError {
message
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment