GRAPHQL sample file
graphql_sample_file_5MB.graphql
5.0 MB
application/octet-stream
SHA256 verified
File details
Filename
graphql_sample_file_5MB.graphqlSize5.0 MB (5242884 bytes)
MIME type
application/octet-streamExtension
.graphqlSHA256
817f2fbeea779ca69d11b18ee860ab5cd8b962d1afbd69f7beaf57ba47cb0c55Download commands
Use in scripts and tests
curl -L -o graphql_sample_file_5MB.graphql \
https://samplefile.com/samples/download/data/graphql/graphql_sample_file_5MB.graphql/
wget -O graphql_sample_file_5MB.graphql \
https://samplefile.com/samples/download/data/graphql/graphql_sample_file_5MB.graphql/
import requests
url = "https://samplefile.com/samples/download/data/graphql/graphql_sample_file_5MB.graphql/"
resp = requests.get(url)
with open("graphql_sample_file_5MB.graphql", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/graphql/graphql_sample_file_5MB.graphql/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("graphql_sample_file_5MB.graphql", buf);
# Download and verify SHA256
curl -L -o graphql_sample_file_5MB.graphql https://samplefile.com/samples/download/data/graphql/graphql_sample_file_5MB.graphql/
echo "817f2fbeea779ca69d11b18ee860ab5cd8b962d1afbd69f7beaf57ba47cb0c55 graphql_sample_file_5MB.graphql" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/graphql/graphql_sample_file_5MB.graphql/").content
assert hashlib.sha256(data).hexdigest() == "817f2fbeea779ca69d11b18ee860ab5cd8b962d1afbd69f7beaf57ba47cb0c55"
More GRAPHQL files
Other GRAPHQL Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
graphql_federated_schema_sample.graphql |
281 B | 75f9b9ed97c103ea… |
Download |
graphql_mutation_contract_sample.graphql |
263 B | 86f5da9749a3ae74… |
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 |
Learn more