When i am trying to fetch count. getting this below error
``[QRY16] Invalid Query Pattern: The pattern '{{ $xy isa taggedwith; $xy ($x, $y); $x has $_0; $x isa Person; $y isa Employer; $_0 = "ab333a1a-0688-4d70-a9da-32b095a69223"; $_0 isa unique_id; }}' can never be satisfied the current schema, specifically due to '[{ $xy isa taggedwith; $xy ($x, $y); $x has $_0; $x isa Person; $y isa Employer; $_0 = "ab333a1a-0688-4d70-a9da-32b095a69223"; $_0 isa unique_id; }]'.
Please check server logs for the stack trace`.`
Actual Query i am using:
match $x isa Person; {$x id ab333a1a-0688-4d70-a9da-32b095a69223;}; $xy ($x, $y) isa taggedwith; $y isa Employer; get $y; count;
I want to fetch count, without any issues.