import { gql } from "@apollo/client";
export const CAFE_FRAGMENT = gql`
fragment CafeParts on CAFE {
id
name
address
}
`;
- fragment 사용
import { gql } from "@apollo/client";
const SEARCH_CAFE = gql`
query searchCafe($input: SearchCafeInput!) {
searchCafe(input: $input) {
ok
error
cafes {
...CafeParts
}
}
}
${CAFE_FRAGMENT}
`;