rwhite
rwhite

Reputation: 69

How to query a specific collection from a RavenDB?

In one database, I am storing two separate documents - CumulativeSprintData and Features. I'm trying to query from javascript. Right now I'm just using the default:

http://servername:8080/databases/sprintprogress/indexes/dynamic?

The problem is that this default query pulls in documents of both types. How do I specify which document type I want to pull down?

Thanks!

Upvotes: 1

Views: 180

Answers (1)

Ayende Rahien
Ayende Rahien

Reputation: 22956

You can use:

http://servername:8080/databases/sprintprogress/indexes/dynamic/Features

http://servername:8080/databases/sprintprogress/indexes/dynamic/CumulativeSprintDatas

Upvotes: 1

Related Questions