{"section":"known-issues","requestedLocale":"en","requestedSlug":"transliteration-only-being-saved-in-vbase-and-not-into-rewriter","locale":"en","slug":"transliteration-only-being-saved-in-vbase-and-not-into-rewriter","path":"docs/en/known-issues/Store Framework/transliteration-only-being-saved-in-vbase-and-not-into-rewriter.md","branch":"main","content":"## Summary\n\n\n\nWhen transliterating the urls through the catalog rewriter is not storing it, or is not receiving any notification through the broadcaster, we are only storing it in vbase\n\n\n#### Simulation\n\n\n\nTransl\n\nCheck the rewriter with the linkId that you created at admin/graphql-ide and choose the rewriter app:\n\n\n    \\{ internal\\{ get(path: \"yourLinkdIdHere\")\\{ id \\} \\}\\}\n\n\n\n\n#### Workaround\n\n\n\nRun the following query on the rewriter\n\n\n    \\{ internal\\{ get(path: \"yourTranslatedCategoryNameSlugified\")\\{ id from declarer type query binding  origin resolveAs \\} \\}\\}\n\n\nSave the returned values, you will need to use them in the next step\n\nRun the following mutation just changing the from parameter, the others must be the same as above:\n\n\n    mutation saveInternal($route: InternalInput!) \\{ internal \\{ save(route: $route) \\{ from declarer type id binding resolveAs origin \\} \\}\\}\\{ \"route\": \\{ \"from\": \"yourLinkId\", \"declarer\": \"yourSavedDeclarer\", \"type\": \"yourSavedType\", \"binding\": \"yourSavedBinding\", \"id\": \"yourSavedId\", \"origin\": \"yourSavedOrigin\", \"resolveAs\": \"TheOriginalNameOfTheCategory\" --here in cyrilic \\}\\}\n\n\n\n> For more information regarding those params, you can consult: https://developers.vtex.com/vtex-developer-docs/docs/rewriter\n\n\nNow, we are going to delete the old route (the one saved with the name)\n\n\n    mutation saveInternal($route: InternalInput!) \\{ internal \\{ delete(path: \"yourTranslatedCategoryNameSlugified\") \\{ id \\} \\}\\}"}