Hey there, I am using tap-salesforce to pull data,...
# getting-started
h
Hey there, I am using tap-salesforce to pull data, first time full load and then incremental. There are situations when I need to pull data only latest 10 records from Contact or Account. Is it possible to do in MeltanoLab variant?
Copy code
plugins:
  extractors:
  - name: tap-salesforce
    variant: meltanolabs
    pip_url: git+<https://github.com/MeltanoLabs/tap-salesforce.git@v1.9.0>
    config:
      client_id: xxxxx
      max_workers: 8
      api_type: REST
      instance_url: <https://xx.xx.salesforce.com>
    select:
    - Account.*
e
It's not possible in general, but if the stream supports incremental replication you could set the start date to a sufficiently recent timestamp
1