You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The COUNT function receives a query expression as param an returns a table containing only one row, called count with the total number of rows returned from the query passed in.
Definition:
query = GET <[fields, ]> FROM <entity> <[entity_id, ]> ON <chain>
COUNT(<query>)
Examples:
# ✅ Valid queryCOUNT(GET *FROM tx WHERE block = latest ON eth)
The text was updated successfully, but these errors were encountered:
Description
The
COUNT
function receives a query expression as param an returns a table containing only one row, calledcount
with the total number of rows returned from the query passed in.Definition:
Examples:
The text was updated successfully, but these errors were encountered: