在Angular5中使用Apollo GraphQL发送GET请求的查询格式是什么?
我用过
this.querySubscription = this.apollo.watchQuery<any>({
query: gql`
query listSchemaAttributes($schemaDomain: String!) {
query listSchemaAttributes(schemaDomain: $schemaDomain) {
type
uniqueName
isList
}
}
`,
variables: {
schemaDomain: "abc",
},
})
.valueChanges
.subscribe(({data}) => {
this.currentUser = data.currentUser;
});
当我在网络选项卡中签入时,此请求以POST方式发送,但我需要将其作为GET方法发送。请帮我解决这个问题。感谢
答案 0 :(得分:0)
您可以使用apollo-angular-link-http
及其method
选项将其设置为GET