This PR makes it possible to use the new `join` field in connection with an `upload` field. Previously `join` was reserved only for relationships.
17 lines
347 B
TypeScript
17 lines
347 B
TypeScript
export const categoriesSlug = 'categories'
|
|
|
|
export const postsSlug = 'posts'
|
|
|
|
export const uploadsSlug = 'uploads'
|
|
|
|
export const localizedPostsSlug = 'localized-posts'
|
|
|
|
export const localizedCategoriesSlug = 'localized-categories'
|
|
|
|
export const collectionSlugs = [
|
|
categoriesSlug,
|
|
postsSlug,
|
|
localizedPostsSlug,
|
|
localizedCategoriesSlug,
|
|
]
|