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(
Deprecated
limit: Int = 25
page: Int = 1

DEPRECATED The SubFolderItems of the current Library/Workspace/SubFolder. This field will be removed. Use folders instead. | Date: 2024-07-01T00:00:00.000+00:00

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.