10 lines
145 B
GraphQL

query getLibraryItemsSlugs {
libraryItems(pagination: { limit: -1 }) {
data {
attributes {
slug
}
}
}
}