query limit of 200 records in camel-salesforce

2018-06-18 Thread Dicken George
In the rest api salesforce documentation, the standard query function is
done so
/vXX.X/query/?q=*SOQL query*

According to the salesforce documentation, when there are larger queries
with more than 200 records the query function allows us to query the next
set of 200 records by querying so.
/vXX.X/query/*query identifier*

You can find more information on this topic over here:
https://developer.salesforce.com/docs/atlas.en-us.206.0.api_rest.meta/api_rest/resources_query.htm

however as i understand from the camel-salesforce library, this function is
currently not implemented with the version camel-salesforce v2.22.0.

My question is:-
Are you planning to implement this function for the future?
Is there any other method we can query more than 200 records from
salesforce from the camel-salesforce library?

Thank you for your reply.

Kind regards
-- 

Dicken George


Re: query limit of 200 records in camel-salesforce

2018-09-21 Thread Zoran Regvart
`Hi Dicken,
just catching up with emails so sorry for the super late reply.

There's `queryMore` and a `nextRecordsUrl` property on the
AbstractQueryRecordsBase that you can use.

zoran
On Mon, Jun 18, 2018 at 3:44 PM Dicken George  wrote:
>
> In the rest api salesforce documentation, the standard query function is
> done so
> /vXX.X/query/?q=*SOQL query*
>
> According to the salesforce documentation, when there are larger queries
> with more than 200 records the query function allows us to query the next
> set of 200 records by querying so.
> /vXX.X/query/*query identifier*
>
> You can find more information on this topic over here:
> https://developer.salesforce.com/docs/atlas.en-us.206.0.api_rest.meta/api_rest/resources_query.htm
>
> however as i understand from the camel-salesforce library, this function is
> currently not implemented with the version camel-salesforce v2.22.0.
>
> My question is:-
> Are you planning to implement this function for the future?
> Is there any other method we can query more than 200 records from
> salesforce from the camel-salesforce library?
>
> Thank you for your reply.
>
> Kind regards
> --
>
> Dicken George



-- 
Zoran Regvart


Re: query limit of 200 records in camel-salesforce

2018-09-24 Thread Dicken George
Hi Zoran,

Thank you for the help and your reply. I figured it out later at some point
this was the way to go about and got my problem resolved.

I used the queryMore and nextRecordUrl methods on my
AbstractQueryRecordBase.

Cheers
Dicken

On Fri, Sep 21, 2018 at 3:11 PM Zoran Regvart  wrote:

> `Hi Dicken,
> just catching up with emails so sorry for the super late reply.
>
> There's `queryMore` and a `nextRecordsUrl` property on the
> AbstractQueryRecordsBase that you can use.
>
> zoran
> On Mon, Jun 18, 2018 at 3:44 PM Dicken George 
> wrote:
> >
> > In the rest api salesforce documentation, the standard query function is
> > done so
> > /vXX.X/query/?q=*SOQL query*
> >
> > According to the salesforce documentation, when there are larger queries
> > with more than 200 records the query function allows us to query the next
> > set of 200 records by querying so.
> > /vXX.X/query/*query identifier*
> >
> > You can find more information on this topic over here:
> >
> https://developer.salesforce.com/docs/atlas.en-us.206.0.api_rest.meta/api_rest/resources_query.htm
> >
> > however as i understand from the camel-salesforce library, this function
> is
> > currently not implemented with the version camel-salesforce v2.22.0.
> >
> > My question is:-
> > Are you planning to implement this function for the future?
> > Is there any other method we can query more than 200 records from
> > salesforce from the camel-salesforce library?
> >
> > Thank you for your reply.
> >
> > Kind regards
> > --
> >
> > Dicken George
>
>
>
> --
> Zoran Regvart
>


-- 

Dicken George