Skip to content

Commit 626dfda

Browse files
committed
Add line in elastic_query_interval.md and do sbt prepare
1 parent 72e782b commit 626dfda

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

docs/overview/queries/elastic_query_interval.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
id: elastic_interval_query
33
title: "Overview"
44
---
5+
56
The `Intervals` query allows for advanced search queries based on intervals between words in specific fields.
67
This query provides flexibility for conditions.
78

modules/library/src/main/scala/zio/elasticsearch/ElasticIntervalQuery.scala

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2022 LambdaWorks
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
package zio.elasticsearch
218

319
import zio.NonEmptyChunk

modules/library/src/main/scala/zio/elasticsearch/query/ElasticIntervalRule.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616

1717
package zio.elasticsearch.query
1818

19+
import zio.Chunk
1920
import zio.elasticsearch.ElasticPrimitive.ElasticPrimitiveOps
2021
import zio.elasticsearch.Field
2122
import zio.elasticsearch.query.options.{HasAnalyzer, HasUseField}
2223
import zio.json.ast.Json
2324
import zio.json.ast.Json.{Arr, Obj, Str}
24-
import zio.Chunk
2525

2626
private[elasticsearch] sealed trait BoundType
2727
private[elasticsearch] sealed trait Inclusive extends BoundType

0 commit comments

Comments
 (0)