aboutsummaryrefslogtreecommitdiff
path: root/packages/bun-macro-relay/test/foo.tsx
blob: fbb54f5511315ff06765862c6e2be89c897b3b20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
import { graphql } from "react-relay";

export const Foo = () => {
  const definition = graphql`
    query FooOperation {
      foo
    }
  `;

  return <div>{definition.operation.name}</div>;
};