one fable-low hijack cell
pair graphql / tsql
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked graphql (first-offered)
· classifierA
· tiernone
response (200 chars)
# `^` in T-SQL vs GraphQL
## T-SQL: `^` is the **bitwise XOR** operator
```sql
SELECT 5 ^ 3; -- Result: 6
-- 101 XOR 011 = 110 (binary)
-- Also a compound assignment operator:
DECLARE @x INT
neighbors