John Santiago Jr.

Results 4 comments of John Santiago Jr.

Patch works great. Thank you!

@mfusser Yes. Pasted the root entity and context entity extension below. Really appreciate you taking look. ``` type Product @rootEntity( flexSearch: true flexSearchLanguage: EN permissionProfile: "product" ) { name: String!...

@mfusser The `allInnerChildren: [Product] @collect(path: "children{1,7}")` looks like is the cause of the error. Removing it from query or modifying the max depth to `children{0, 1}` succeeds. Error is bubbling...

Thank you for the response. That makes sense to have to write a permissions profile for each Root Entity. In the example above I was also curious having restriction with...