OBJECT
User
link GraphQL Schema definition
- type User {
- # awards to the user from FAIRsharing
- : Json!
- # optional Bluesky handle
- : String
- # records created by this user
- : [FairsharingRecordSummary!]
- # saved searches created by this user
- : [SavedSearch!]
- # true if user deactivated by curators
- : Boolean!
- # edits this user has made
- : [EditEvent!]
- # user's email address
- : String!
- # optional first name
- : String
- # graphql api key
- : String
- # optional personal/institutional homepage
- : String
- # user's ID
- : Int!
- # optional last name
- : String
- # fairsharing_records this user maintains
- : [FairsharingRecordSummary!]
- # maintenance requests made by this user
- : [MaintenanceRequest!]
- # optional Mastodon handle
- : String
- # optional ORCID ID
- : String
- # organisations to which this user belongs
- : [Organisation!]
- # records being curated by this user
- : [FairsharingRecordSummary!]
- # whether user has site curation powers
- : Json!
- # saved searches linked to this user
- : [SavedSearch!]
- # true if user created via ORCID etc.
- : Boolean!
- # username
- : String!
- # fairsharing_records this user watches
- : [FairsharingRecordSummary!]
- }