Streams or Projects

Hi everyone,
I have a question about GraphQL queries.

Currently, I am making this type of queries :

export const streamSearchQuery = search => `query {
  streams(query: "${search}") {
    totalCount
    cursor
    items {
      id
      name
      updatedAt
      description
    }
  }
}` 

Will I need to change in the future:

  • streams to project,
  • branches to model,
  • commits to versions

?

Have a nice day,

Mathilde

We recommend developers migrate to using the new project/models/versions schema, and avoid the old stream/branch/commits schema that has been deprecated for a while now.

There isn’t yet an immediate plan for removal of any of the deprecated schema, but the deprecation message is us giving you notice that we may break or remove functionality at anytime.