(address? x)
Return true if x
is a address, otherwise false.
Return true if `x` is a address, otherwise false.
(by-city db city & [opts])
Find all rows in db
by city
.
Find all rows in `db` by `city`.
(by-country-id db country-id & [opts])
Find all rows in db
by country-id
.
Find all rows in `db` by `country-id`.
(by-created-at db created-at & [opts])
Find all rows in db
by created-at
.
Find all rows in `db` by `created-at`.
(by-formatted db formatted & [opts])
Find all rows in db
by formatted
.
Find all rows in `db` by `formatted`.
(by-id db id & [opts])
Find all rows in db
by id
.
Find all rows in `db` by `id`.
(by-location db location & [opts])
Find all rows in db
by location
.
Find all rows in `db` by `location`.
(by-locations db locations)
Resolve addresses by their locations
.
Resolve addresses by their `locations`.
(by-postal-code db postal-code & [opts])
Find all rows in db
by postal-code
.
Find all rows in `db` by `postal-code`.
(by-region-id db region-id & [opts])
Find all rows in db
by region-id
.
Find all rows in `db` by `region-id`.
(by-street-name db street-name & [opts])
Find all rows in db
by street-name
.
Find all rows in `db` by `street-name`.
(by-street-number db street-number & [opts])
Find all rows in db
by street-number
.
Find all rows in `db` by `street-number`.
(by-updated-at db updated-at & [opts])
Find all rows in db
by updated-at
.
Find all rows in `db` by `updated-at`.
(by-user-id db user-id & [opts])
Find all rows in db
by user-id
.
Find all rows in `db` by `user-id`.
(delete! db record & [opts])
Delete the record
from db
.
Delete the `record` from `db`.
(delete-all! db records & [opts])
Delete all records
from db
.
Delete all `records` from `db`.
(exists? db record)
Returns true if the record
exists in db
, otherwise false.
Returns true if the `record` exists in `db`, otherwise false.
(gen)
(gen db)
A generator that produces rows for the :addresses table.
A generator that produces rows for the :addresses table.
(insert! db record & [opts])
Insert record
into the db
.
Insert `record` into the `db`.
(insert-all! db records & [opts])
Insert all records
into the db
.
Insert all `records` into the `db`.
(ke-nui-road-haleiwa db)
Return the address 59-343 Ke Nui Road, Haleiwa, HI 96712, USA.
Return the address 59-343 Ke Nui Road, Haleiwa, HI 96712, USA.
(save-all! db records & [opts])
Save all records
to db
.
Save all `records` to `db`.
(search db
&
[{:keys [countries direction distance except limit location offset
regions sort query]
:as opts}])
Search addresses.
Search addresses.
(select-batch db rows & [opts])
Select the batch of addresses rows from table.
Select the batch of addresses rows from table.
(truncate! db & [opts])
Truncate the addresses table.
Truncate the addresses table.
(update! db record & [opts])
Update record
in the db
.
Update `record` in the `db`.
(update-all! db records & [opts])
Update all records
in the db
.
Update all `records` in the `db`.
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close