# Functions
Decode decodes url values into the struct.
Filters is a shortcut for NewFilter(urlValues).Filters.
No description provided by the author
No description provided by the author
Pagination is used with Query.Apply to set LIMIT and OFFSET from the URL values: - ?limit=10 - sets q.Limit(10), max limit is 1000.
# Structs
URLFilter is used with Query.Apply to add WHERE clauses from the URL values: - ?foo=bar - Where(`"foo" = 'bar'`) - ?foo=hello&foo=world - Where(`"foo" IN ('hello','world')`) - ?foo__neq=bar - Where(`"foo" != 'bar'`) - ?foo__exclude=bar - Where(`"foo" != 'bar'`) - ?foo__gt=42 - Where(`"foo" > 42`) - ?foo__gte=42 - Where(`"foo" >= 42`) - ?foo__lt=42 - Where(`"foo" < 42`) - ?foo__lte=42 - Where(`"foo" <= 42`) - ?foo__ieq=bar - Where(`"foo" ILIKE 'bar'`) - ?foo__match=bar - Where(`"foo" SIMILAR TO 'bar'`).
No description provided by the author
# Type aliases
No description provided by the author