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