You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
215 B

  1. query ($folderId: Int!, $kind: AssetKind!) {
  2. assets {
  3. list(folderId:$folderId, kind: $kind) {
  4. id
  5. filename
  6. ext
  7. kind
  8. mime
  9. fileSize
  10. createdAt
  11. updatedAt
  12. }
  13. }
  14. }