Hi @mtalt and @kevinquillenm, thank you for your valuable time on fixing this issue,
and sorry to not been more pro-active here ;)
SamirMtl → created an issue.
HI
found a new issue described here:
https://www.drupal.org/project/estimated_read_time/issues/3345620
🐛
Error on adding new translation
Fixed
SamirMtl → created an issue.
HI @jmolivas
Thanks for your module it was helpful for my personal project,
I have figured out a solution to make the module translatable, basically, I implemented 2 new producers in the ContentTypeSchemaExtension that accept the language parameters, so the GraphQl would be :
query ($path: String!, $language: String!){
nodeByPathLang(path: $path, language: $language) {
... on NodeArticle {
__typename
id
title
path
tempKeyWorldMeta
summary{
value
}
author {
displayName
}
body {
processed
}
status
created
}
}
}
That means big changes in the code, and non-backward compatibilities, maybe I missing something, but I didn't find a way to implement a new ContentTypeLangSchemaExtension class that accepts lang parameters, I have an error "ArticleNode type already declared"
It would be helpful if I have some guidance for that,
I'm on slack, a direct chat will be more effective