29 lines
416 B
GraphQL
29 lines
416 B
GraphQL
|
#import "./diffRefs.fragment.graphql"
|
||
|
#import "~/graphql_shared/fragments/author.fragment.graphql"
|
||
|
#import "./note_permissions.fragment.graphql"
|
||
|
|
||
|
fragment DesignNote on Note {
|
||
|
id
|
||
|
author {
|
||
|
...Author
|
||
|
}
|
||
|
body
|
||
|
bodyHtml
|
||
|
createdAt
|
||
|
position {
|
||
|
diffRefs {
|
||
|
...DesignDiffRefs
|
||
|
}
|
||
|
x
|
||
|
y
|
||
|
height
|
||
|
width
|
||
|
}
|
||
|
userPermissions {
|
||
|
...DesignNotePermissions
|
||
|
}
|
||
|
discussion {
|
||
|
id
|
||
|
}
|
||
|
}
|