From 0cac6e63c5f79570ab0426b6759b799d2359790d Mon Sep 17 00:00:00 2001 From: Bryce Covert Date: Mon, 3 Apr 2023 19:55:35 -0700 Subject: [PATCH] (cloud) typo --- src/clj/auto_ap/graphql.clj | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/clj/auto_ap/graphql.clj b/src/clj/auto_ap/graphql.clj index ba3ff108..c5bd3b13 100644 --- a/src/clj/auto_ap/graphql.clj +++ b/src/clj/auto_ap/graphql.clj @@ -657,13 +657,13 @@ '[(.toInstant ^java.util.Date ?date) ?d2] '[(.between java.time.temporal.ChronoUnit/DAYS (java.time.Instant/now) ?d2 ) ?d3] '(or-join [?d3 ?name] - (and [(<= ?c 0)] + (and [(<= ?d3 0)] [(ground :due) ?name]) - (and [(<= ?c 30)] + (and [(<= ?d3 30)] [(ground :due-30) ?name]) - (and [(<= ?c 60)] + (and [(<= ?d3 60)] [(ground :due-30) ?name]) - (and [(> ?c 60)] + (and [(> ?d3 60)] [(ground :due-later) ?name]))]}}) true (dc/q))