GRAPHQL sample file
graphql_sample_file_50KB.graphql
50.0 KB
application/octet-stream
SHA256 verified
File details
Filename
graphql_sample_file_50KB.graphqlSize50.0 KB (51200 bytes)
MIME type
application/octet-streamExtension
.graphqlSHA256
a2e2d6763fdbabedfde484eb0c08f95828d51adba2ada491b6a43877d1ca3974Download commands
Use in scripts and tests
curl -L -o graphql_sample_file_50KB.graphql \
https://samplefile.com/samples/download/data/graphql/graphql_sample_file_50KB.graphql/
wget -O graphql_sample_file_50KB.graphql \
https://samplefile.com/samples/download/data/graphql/graphql_sample_file_50KB.graphql/
import requests
url = "https://samplefile.com/samples/download/data/graphql/graphql_sample_file_50KB.graphql/"
resp = requests.get(url)
with open("graphql_sample_file_50KB.graphql", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/graphql/graphql_sample_file_50KB.graphql/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("graphql_sample_file_50KB.graphql", buf);
# Download and verify SHA256
curl -L -o graphql_sample_file_50KB.graphql https://samplefile.com/samples/download/data/graphql/graphql_sample_file_50KB.graphql/
echo "a2e2d6763fdbabedfde484eb0c08f95828d51adba2ada491b6a43877d1ca3974 graphql_sample_file_50KB.graphql" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/graphql/graphql_sample_file_50KB.graphql/").content
assert hashlib.sha256(data).hexdigest() == "a2e2d6763fdbabedfde484eb0c08f95828d51adba2ada491b6a43877d1ca3974"
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