Skip to content
Snippets Groups Projects
Commit 5ef71994 authored by magicfelix's avatar magicfelix
Browse files

Allow addition query args to be passed to InlineCRUDList

parent e3ad9427
No related branches found
No related tags found
1 merge request!1304Refactor calendar overview in more different components
Pipeline #141891 failed
......@@ -277,6 +277,7 @@ export default {
query: this.gqlQuery,
variables() {
return {
...this.additionalQueryArgs,
orderBy: this.gqlOrderBy,
filters: this.filterString,
};
......@@ -403,6 +404,11 @@ export default {
type: Object,
required: true,
},
additionalQueryArgs: {
type: Object,
required: false,
default: () => ({}),
},
gqlCreateMutation: {
type: Object,
required: false,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment