mirror of
https://github.com/Airsequel/AirGQL.git
synced 2025-07-29 14:23:18 +03:00
Remove sql => gql blob conversion
This commit is contained in:
parent
f4323b661b
commit
84a6c44abf
1 changed files with 1 additions and 1 deletions
|
@ -798,7 +798,7 @@ sqlDataToGQLValue datatype sqlData = case (datatype, sqlData) of
|
|||
<> "Use a Number (64-bit float) or Text column instead."
|
||||
(_, SQLFloat double) -> pure $ Float double
|
||||
(_, SQLText text) -> pure $ String text
|
||||
(_, SQLBlob _) -> pure $ String "<BINARY BLOB>"
|
||||
(_, SQLBlob _) -> Left "Cannot encode BLOB directly as gql"
|
||||
(_, SQLNull) -> pure Null
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue