Skip to content

Commit abeac24

Browse files
Update blob.md
Updated wording
1 parent 9f13cc5 commit abeac24

File tree

1 file changed

+2
-2
lines changed
  • docs/technical-details/reference

1 file changed

+2
-2
lines changed

docs/technical-details/reference/blob.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Blob
22

3-
Blobs are binary large objects that can used to store any type of unstructured/binary data and is designed for large content. Blobs support streaming and feature better performance for content larger than about 20KB. Blobs are built off the native JavaScript `Blob` type, and HarperDB extends the native `Blob` type for integrated storage with the database. To use blobs, you would generally want to declare a field as a `Blob` type in your schema:
3+
Blobs are binary large objects that can be used to store any type of unstructured/binary data and is designed for large content. Blobs support streaming and feature better performance for content larger than about 20KB. Blobs are built off the native JavaScript `Blob` type, and HarperDB extends the native `Blob` type for integrated storage with the database. To use blobs, you would generally want to declare a field as a `Blob` type in your schema:
44
```graphql
55
type MyTable {
66
id: Any! @primaryKey
@@ -93,4 +93,4 @@ if (blob.size === undefined) {
9393

9494
```
9595

96-
See the [configuration](../../deployments/configuration.md) documentation for more information on configuring where blob are stored.
96+
See the [configuration](../../deployments/configuration.md) documentation for more information on configuring where blob are stored.

0 commit comments

Comments
 (0)