Skip to content
This repository has been archived by the owner on Nov 12, 2023. It is now read-only.

Commit

Permalink
Fix tx-meta spec.
Browse files Browse the repository at this point in the history
  • Loading branch information
whilo committed Jan 10, 2023
1 parent ec87469 commit acba31c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/clj/datahike_server/server.clj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

(s/def ::entity any?)
(s/def ::tx-data (s/coll-of ::entity))
(s/def ::tx-meta (s/coll-of ::entity))
(s/def ::tx-meta (s/nilable (s/coll-of ::entity)))
(s/def ::transactions (s/keys :req-un [::tx-data] :opt-un [::tx-meta]))

(s/def ::query (s/coll-of any?))
Expand Down

0 comments on commit acba31c

Please sign in to comment.