我有一个 Angular 7 应用程序,它使用了 GraphQL API。我正在使用Protractor进行E2E测试。
我想检查登录后调用API的响应结果。如何通过e2e量角器检查GraphQL响应数据?
我想打的GQL端点:
export const CurrentPersonQuery = gql`
query CurrentPersonQuery($cdn_links: Boolean) {
currentPerson {
...
email
full_name
id
status
...
}
}
`;
P.S。 -有用于测试REST API的资源,但我找不到用于Graph API的资源。