Give a stricter query by specific multi time ranges
  
```historica  
[query.from-1997-to-2022]  start="1997/Jun/12"  end="2022/Jun/13"    
    
[query.from-1000-to-1500]  start="1000/Jun/12"  end="1500/Jun/13"  
  
```  
  

Tip

Historica using toml as configuration syntax, so a table/table array is the syntax to define your query. You can
check more of them here


Tip

Historica by default not parsing year alone, case “1997”,…etc will not work in most language, except English, because Historica have its custom parser. But it not mean in another language it will work, example - In Nachkriegszeit und 1950 wesentliche Beiträge zur Entstehung der Teildisziplin.

Please make your statement clearer like August/1950

It is the same with your advantage query syntax, which powered under the same library.

  • Work
  
```historica  
[query.from-1997-to-2022] 
start="1997/Jun/12"
end="2022/Jun/13"
  
```  
  
  • Not work
```historica
[query.from-1950-to-1960]
start="1950"
end="1960"
```
```