GRAPHQL sample file
graphql_mutation_contract_sample.graphql
263 B
application/octet-stream
SHA256 verified
File details
Filename
graphql_mutation_contract_sample.graphqlSize263 B (263 bytes)
MIME type
application/octet-streamExtension
.graphqlSHA256
86f5da9749a3ae742b738d48f1897e7a4245efd900b9123588237df2ae6bd776Download commands
Use in scripts and tests
curl -L -o graphql_mutation_contract_sample.graphql \
https://samplefile.com/samples/download/data/graphql/graphql_mutation_contract_sample.graphql/
wget -O graphql_mutation_contract_sample.graphql \
https://samplefile.com/samples/download/data/graphql/graphql_mutation_contract_sample.graphql/
import requests
url = "https://samplefile.com/samples/download/data/graphql/graphql_mutation_contract_sample.graphql/"
resp = requests.get(url)
with open("graphql_mutation_contract_sample.graphql", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/graphql/graphql_mutation_contract_sample.graphql/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("graphql_mutation_contract_sample.graphql", buf);
# Download and verify SHA256
curl -L -o graphql_mutation_contract_sample.graphql https://samplefile.com/samples/download/data/graphql/graphql_mutation_contract_sample.graphql/
echo "86f5da9749a3ae742b738d48f1897e7a4245efd900b9123588237df2ae6bd776 graphql_mutation_contract_sample.graphql" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/graphql/graphql_mutation_contract_sample.graphql/").content
assert hashlib.sha256(data).hexdigest() == "86f5da9749a3ae742b738d48f1897e7a4245efd900b9123588237df2ae6bd776"
More GRAPHQL files
Other GRAPHQL Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
graphql_federated_schema_sample.graphql |
281 B | 75f9b9ed97c103ea… |
Download |
graphql_sample_file_1MB.graphql |
1.0 MB | 0eab9a08c92eb40f… |
Download |
graphql_sample_file_200KB.graphql |
200.0 KB | 108f8f75f5c60cf1… |
Download |
graphql_sample_file_2MB.graphql |
2.0 MB | f5f84b0ccf79ac90… |
Download |
graphql_sample_file_500KB.graphql |
500.0 KB | 4d9fd9955791dce8… |
Download |
graphql_sample_file_50KB.graphql |
50.0 KB | a2e2d6763fdbabed… |
Download |
Learn more