Skip to content

Commit

Permalink
fix: collections reordering
Browse files Browse the repository at this point in the history
  • Loading branch information
axisuru committed Sep 7, 2023
1 parent 2340d7c commit 7af95d0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
query CollectionRelatedEntities($id: Int!) {
collection(id: $id) {
collectionRelations {
collectionRelations(orderBy: SORT_ORDER_ASC) {
nodes {
movie {
entityId: id
Expand Down
2 changes: 1 addition & 1 deletion services/media/workflows/src/generated/graphql.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17995,7 +17995,7 @@ export type SearchCollectionTagsQueryResult = Apollo.QueryResult<SearchCollectio
export const CollectionRelatedEntitiesDocument = gql`
query CollectionRelatedEntities($id: Int!) {
collection(id: $id) {
collectionRelations {
collectionRelations(orderBy: SORT_ORDER_ASC) {
nodes {
movie {
entityId: id
Expand Down

0 comments on commit 7af95d0

Please sign in to comment.