Specify offset(7) and limit(4) parameters and search tags (AQL version)

How to search old docker tags using AQL or CLI

AuthorFullName__c
Hirofumi Iwashita
articleNumber
000004841
ft:sourceType
Salesforce
FirstPublishedDate
2020-12-07T15:33:01Z
lastModifiedDate
2020-12-07
VersionNumber
5
  1. $ curl -X POST http://localhost:8081/artifactory/api/search/aql -u admin:password -H "Content-Type: text/plain" -d 'items.find({"repo":"docker-local"},{"path":{"$ne":"."}},{"type":"folder"}).include("repo","name","path","modified").sort({"$asc" : ["modified"]}).offset(7).limit(4)'
    
    {
    "results" : [ {
      "repo" : "docker-local",
      "path" : "hello-world",
      "name" : "7.0",
      "modified" : "2020-06-19T23:44:40.670Z"
    },{
      "repo" : "docker-local",
      "path" : "hello-world",
      "name" : "8.0",
      "modified" : "2020-06-19T23:44:42.898Z"
    },{
      "repo" : "docker-local",
      "path" : "hello-world",
      "name" : "10.0",
      "modified" : "2020-06-19T23:44:44.983Z"
    },{
      "repo" : "docker-local",
      "path" : "hello-world",
      "name" : "9.0",
      "modified" : "2020-06-19T23:44:44.983Z"
    } ],
    "range" : {
      "start_pos" : 7,
      "end_pos" : 4,
      "total" : 4,
      "limit" : 4
    }
    }
    $