How I can push content if content already created

I have…

  • Read the following guideline: Troubleshooting and Support | Squidex. I understand that my support request might get deleted if I do not follow the guideline.
  • Used code blocks with ``` to format my code examples like JSON or logs properly.

I’m submitting a…

  • Bug report <!-- Please search the support forum for a similar before submitting

Current behavior

I make update with the next command - “./sq sync in "squidex_data" --app $target_env -t content” and that duplicate content

Expected behavior

command just override existing data

Minimal reproduction of the problem:

  1. Create app ‘TestApp’.
  2. Add schema ‘TestContent’ with ContentId (unique, number), Name(non unique, string)
  3. Add content 1, ‘TestName’.
  4. Run “./sq sync out "squidex_data" --app TestApp”
  5. Run “./sq sync in "squidex_data" --app TestApp -t content”

Environment

App Name: TestApp

  • Self hosted with docker
    Version: Installed 1 month ago

Browser:

  • Chrome (desktop)

Others:
No

The sync command uses the ID and makes an upsert. If you have a content with the same structure and values but a different ID, it is considered as another content item. If this is important you have to write a custom sync tool.

Thanks!
Have you any examples of custom sync tools?

What I meant is that you have to built it yourself from scratch. You could integrate into the CLI, but I am not sure if it would help.

You could have a look to the CLI code: squidex-samples/cli/Squidex.CLI/Squidex.CLI.Core/Commands/Implementation/Sync/Contents at master · Squidex/squidex-samples · GitHub

It can also be built with node or java or any other programming language.