mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
37 lines
422 B
GraphQL
37 lines
422 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
|
|
}
|
|
|
|
fragment UserCommonFields on User {
|
|
id
|
|
firstName
|
|
lastName
|
|
alias
|
|
}
|