Hi Ketan,
It should work on standalone:master. Also, there is nothing specific that needs to be done on schema for enabling parameterized cascade.
You could fire it directly from graphql playground : example (just a dummy query that I fired through playground)
query {
queryReview(filter: { comment: {alloftext: "easy to install"}}) @cascade(fields:["comment"] ) {
comment
by {
username
}
about {
name
}
}
}
Please make sure you have the latest standalone. You might want to delete the image you have and pull a fresh one (I faced some issues because the docker image was outdated).