Get a list of Result objects. Results have a 1:1 mapping with Observations.

### Available end points:

- `/results/` - Will list all Results in the database
- `/results.json` - Will return all Results in json format
- `/results/<object_id>/` - Returns Results object with that id

### Available Methods:

- `GET`
- `HEAD`

### Available filters:

- `dataPath`
- `storageStatus`
- `storageLocation`
- `oldDataPath`
- `fileFormat`
- `observation`

### How to use filters:


`/results/?dataPath=/badc/weybourne/data/co2/`

`/results.json?dataPath=/badc/weybourne/data/co2/`

`/results/?fileFormat__icontains=netCDF`

GET /api/v2/results/3799/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "ob_id": 3799,
    "dataPath": "/badc/hadcm3/data/aatzw",
    "oldDataPath": [],
    "storageLocation": "internal",
    "storageStatus": "online",
    "observation": null,
    "volume": 279294828952,
    "numberOfFiles": 9163,
    "fileFormat": null
}