philomena/lib/philomena/images/query.ex

8 lines
389 B
Elixir
Raw Normal View History

2019-08-24 17:35:30 +02:00
defmodule Philomena.Images.Query do
use Philomena.Search.Lexer,
2019-08-26 00:53:13 +02:00
int: ~W(id width height comment_count score upvotes downvotes faves uploader_id faved_by_id tag_count),
float: ~W(aspect_ratio wilson_score),
date: ~W(created_at updated_at first_seen_at),
literal: ~W(faved_by orig_sha512_hash sha512_hash uploader source_url original_format),
ngram: ~W(description)
2019-08-24 17:35:30 +02:00
end