Skip to content

Commit

Permalink
passed entriesIds for LexicalEntryByIds
Browse files Browse the repository at this point in the history
  • Loading branch information
vmonakhov committed Oct 18, 2024
1 parent ec2abf6 commit fe954d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/LexicalEntryByIds/PerspectiveView/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ export const queryPerspective = gql`
`;

export const queryLexicalEntries = gql`
query queryPerspective2($id: LingvodocID!, $entitiesMode: String!) {
query queryPerspective2($id: LingvodocID!, $entitiesMode: String!, $entriesIds: [LingvodocID]) {
perspective(id: $id) {
id
translations
lexical_entries(mode: $entitiesMode) {
lexical_entries(mode: $entitiesMode, ids: $entriesIds) {
id
parent_id
created_at
Expand Down

0 comments on commit fe954d8

Please sign in to comment.