Aviraj Singh Gour
10/17/2024, 2:51 PMuser
10/17/2024, 2:51 PMHttpSubStream
calls the parent stream with SyncMode.full_refresh
[source](https://discuss.airbyte.io/t/587). If you want both the parent and child stream to be incremental, they should share the same cursor field and you need to define your own stream_slices
method on the child stream, reading the parent stream with SyncMode.incremental
[source](https://discuss.airbyte.io/t/587). For nested streams, you can use a SubstreamPartitionRouter
to implement them. The default state format is per partition, but there are options to enhance efficiency depending on your use case: incremental_dependency
and global_substream_cursor
[source](https://docs.airbyte.com/connector-development/config-based/understanding-the-yaml-file/incremental-syncs#nested-streams).