OBJECT

SavedSearch

link GraphQL Schema definition

  • type SavedSearch {
  • # comments about this search
  • comments: String!
  • # date/time this search was created
  • createdAt: ISO8601DateTime!
  • # created by
  • creator: User!
  • # records attached to search
  • fairsharingRecords: [FairsharingRecord!]!
  • # saved search id
  • id: Int!
  • # saved search name
  • name: String!
  • # organisations attached to search
  • organisations: [Organisation!]!
  • # params for this search
  • params: Json!
  • # url for this search
  • url: String!
  • # users associated to the search
  • users: [User!]!
  • }