本文介绍了如何编写GraphQL查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个有效的网络graphql查询,例如:

I have a working web graphql query as :

{
  me{
    ... on Student{

      profile {
        fullName
        emailId
        mobileNumber
        civilId
        address
        city
        state
        country
        zipCode
        userProfilePic
        userCategory
        createdAt
        updatedAt
      }

    }

  }
}

它返回特定学生的个人资料详细信息.我使用突变记录并为用户获取令牌.

It returns the profile details of a particular student. I log using mutation and gets the token for a user.

我想创建一个graphql文件(例如StudentProfile.graphql),以便使用Apollo客户端发出获取请求(类似于http.get).

I want to create a graphql file (ex. StudentProfile.graphql) in order to make fetch request (similar to http. get) using Apollo client.

我发出此请求以获取graphql查询.

I make this request to fetch the graphql query.

func fetchStudentProfileDetails(){

        let tokenString = "Bearer " +  "....my token ..."

        print(tokenString)


        let newApollo: ApolloClient = {
            let configuration = URLSessionConfiguration.default
            // Add additional headers as needed
            configuration.httpAdditionalHeaders = ["Authorization": tokenString]

            let url = URL(string: "http://52.88.217.19/graphql")!

            return ApolloClient(networkTransport: HTTPNetworkTransport(url: url, configuration: configuration))
        }()



        newApollo.fetch(query: StudentProfileQuery()) { (result, error) in

            self.profileDetailsTextView.text =  "Success"


            if let error = error {
                NSLog("Error while fetching query: \(error.localizedDescription)");
                self.profileDetailsTextView.text =  error.localizedDescription
            }
            guard let result = result else {
                NSLog("No query result");
                self.profileDetailsTextView.text = "No query result"
                return
            }

            if let errors = result.errors {
                NSLog("Errors in query result: \(errors)")

                self.profileDetailsTextView.text =  String(describing: errors)

            }

            guard let data = result.data else {

                NSLog("No query result data");

                return
            }
        }

    }

如何将以下Web查询转换为.graphql文件中的查询?

How do I convert the following web query into a query in the .graphql file?

推荐答案

因此,您可以调用以使用简单的NSUrlSession将新文档创建到Graphql服务器中

so, you can call to create new document into Graphql server using a simple NSUrlSession

let headers = ["content-type": "application/json"]
let parameters = ["query": "mutation { createProfile(fullName: \"test name\" emailId: \"test@email.com\") { id  } }"] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

let request = NSMutableURLRequest(url: NSURL(string: "https://<url graphql>")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()

这篇关于如何编写GraphQL查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-23 05:24