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
|
|
}
|
|
}
|
|
}
|