mirror of
https://github.com/requarks/wiki.git
synced 2025-02-25 18:55:30 -06:00
15 lines
215 B
GraphQL
15 lines
215 B
GraphQL
query ($folderId: Int!, $kind: AssetKind!) {
|
|
assets {
|
|
list(folderId:$folderId, kind: $kind) {
|
|
id
|
|
filename
|
|
ext
|
|
kind
|
|
mime
|
|
fileSize
|
|
createdAt
|
|
updatedAt
|
|
}
|
|
}
|
|
}
|