mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
38 lines
432 B
GraphQL
38 lines
432 B
GraphQL
|
|
fragment SpaceFields on Space {
|
|
id
|
|
name
|
|
description
|
|
url
|
|
}
|
|
|
|
fragment PaginationFields on Pagination {
|
|
total
|
|
page
|
|
pages
|
|
}
|
|
|
|
fragment ProjectBrandingCommonFields on ProjectBranding {
|
|
id
|
|
name
|
|
alias
|
|
description
|
|
spaceId
|
|
newUserToSpace
|
|
logoUrl
|
|
}
|
|
|
|
fragment AiChatMessageFields on ChatGptMessage {
|
|
content
|
|
role
|
|
threadId
|
|
isError
|
|
}
|
|
|
|
fragment UserCommonFields on User {
|
|
id
|
|
firstName
|
|
lastName
|
|
alias
|
|
}
|