OBJECT

Project

Instance of a Project

link GraphQL Schema definition

  • type Project {
  • createdAt: Instant
  • description: String
  • name: String!
  • title: String
  • version: Long
  • # The campaigns that belong to this project
  • campaigns: [Campaign!]!
  • # The connections that belong to this project
  • connections: [Connection!]!
  • # The data sources that belong to this project
  • dataSources: [DataSource!]!
  • # The profile links that belong to this project
  • profileLinks: [ProfileLink!]!
  • # The profile schemas that belong to this project
  • profileSchemas: [ProfileSchema!]!
  • }