Logo of FrontifyDeveloper portalArrow to the right
GraphQL reference
Interface

Folder

FolderInterface for Folder returnable types.

Implemented by

An Interface is an abstract type that includes a certain set of fields that a type must include to implement the interface.Following types all implement this interface and must have all fields of this interface present.The __typename field resolves to a String which lets you differentiate different data types from each other on the client.

Type fields
id:ID!

Folder Id.

name:String!

Folder name.

creator:User!

The User who created the Folder.

createdAt:DateTime!

DateTime of the Folder creation.

modifier:User

The User who last modified the Folder.

modifiedAt:DateTime

DateTime of the last Folder modification.

breadcrumbs:[Breadcrumb!]!

A list of Breadcrumb items representing the parent folders structure for the current SubFolder.

subFolders(
limit: Int = 25
page: Int = 1
Deprecated

The SubFolderItems of the current Library/Workspace/SubFolder.

Removal: 1 Jul 2025 — use folders instead
folders(
limit: Int = 25
page: Int = 1

The FolderItems of the current Library/Workspace/Folder.

assets(
limit: Int = 25
page: Int = 1

The AssetItems in the current Library/Workspace/Folder.