CURL을 사용한 Graphql 요청
2748 단어 tutorialgraphqlprogrammingwebdev
GraphQL 쿼리 요청하기
curl 'https://countries.trevorblades.com/' \
-X POST \
-H 'content-type: application/json' \
--data '{
"query": "{ continents { code name } }"
}'
변형 요청하기
curl 'https://graphql-api-url' \
-X POST \
-H 'content-type: application/json' \
--data '{
"query":"mutation { createUser(name: \"John Doe\") }"
}'
추가 헤더 전달
헤더에 승인을 전달해야 하는 경우 다른 인수
-H
를 추가하세요.curl 'https://countries.trevorblades.com/' \
-X POST \
-H 'Authorization: Token xxxxx' \
-H 'content-type: application/json' \
--data '{
"query": "{ continents { code name } }"
}'
응답 헤더 인쇄
응답 헤더를 보려면
-D -
를 추가합니다(stdout에 헤더 덤프).curl 'https://countries.trevorblades.com/' \
-X POST \
-D - \
-H 'content-type: application/json' \
--data '{
"query": "{ continents { code name } }"
}'
예쁜 인쇄 응답 JSON
출력 JSON을 예쁘게 출력하려면 curl 호출 끝에
| python -m json.tool
를 추가하세요.curl 'https://countries.trevorblades.com/' \
-X POST \
-H 'content-type: application/json' \
--data '{
"query": "{ continents { code name } }"
}' | python -m json.tool
Reference
이 문제에 관하여(CURL을 사용한 Graphql 요청), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/tikam02/graphql-requests-with-curl-i02텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)