GraphQLError:语法错误:预期名称,找到}

时间:2018-10-18 02:20:47

标签: reactjs graphql react-apollo

我正在尝试使用片段格式化GraphQL查询,但是我不断收到错误消息:

GraphQLError:语法错误:预期名称,找到}

const ItemFields = gql`
fragment ItemFields on Item {
  id
  title
  imageurl
  description
  createdon
  tags {
    id
    title
  }
  ownerid {
    id
    fullname
    email
    bio
  }
  borrower {
    id
    fullname
    email
    bio
  }
}
`;


export const ALL_ITEMS_QUERY = gql`
  query item($filter: ID) {
    item {
      ...ItemFields
    }
  }
  ${ItemFields}
`;

有人遇到过类似的问题吗?谁能告诉我如何纠正这个问题?

0 个答案:

没有答案