Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(graphql): Set max execution depth to 10 (#1431)
<!--- Provide a general summary of your changes in the Title above --> ## Description <!--- Describe your changes in detail --> We have the possibility for "infinite" recursion in our parties query (sub-parties) ``` parties { subParties { subParties { subParties { subParties { ... } } } } } ``` Capping the global query depth level at 10. (Max depth on dialogById seems to be 7) ``` query q { dialogById(dialogId: "c8147d41-936e-4124-8119-ea1add40c4b4") { dialog { transmissions { content { title { mediaType value { value } } } } } } } ``` ## Related Issue(s) - #1430
- Loading branch information