-
-
Save elbow-jason/10dd7fd542396b62d690 to your computer and use it in GitHub Desktop.
query example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defp planting_operations_only do | |
from operation in Operation, | |
where: operation.operation_type == "planting", | |
preload: :variety | |
end | |
def crop_plan_preloads(query) do | |
from q in query, | |
preload: :crop, | |
preload: :fields, | |
preload: [operations: ^planting_operations_only] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment