You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
I had a chapter from the /verses/:version/:abbrev/:chapter endpoint and I needed to access the number of chapters of its book property, but surprisingly it didn't work because the book property of the chapter returned by this endpoint doesn't contain the number of chapters. I honestly don't know if that's intentional, but I find it weird since all books returned by the /books endpoint do contain a chapters property. This was a problem for me because I did not have access to a book from /books where I was trying to access the total amount of chapters from.
Describe the solution you'd like
I think the solution might just be a matter of adding a chapters property to the response of the getChapter function. E.g.
Describe alternatives you've considered
For now, I'm searching for a book in an array containing all books from the /books endpoint, which does contain the chapters property, and adding it to an object which I'm later going to use.
Is your feature request related to a problem? Please describe.
I had a chapter from the
/verses/:version/:abbrev/:chapter
endpoint and I needed to access the number of chapters of its book property, but surprisingly it didn't work because the book property of the chapter returned by this endpoint doesn't contain the number of chapters. I honestly don't know if that's intentional, but I find it weird since all books returned by the/books
endpoint do contain achapters
property. This was a problem for me because I did not have access to a book from/books
where I was trying to access the total amount of chapters from.Describe the solution you'd like
I think the solution might just be a matter of adding a
chapters
property to the response of the getChapter function. E.g.Describe alternatives you've considered
For now, I'm searching for a book in an array containing all books from the
/books
endpoint, which does contain thechapters
property, and adding it to an object which I'm later going to use.The text was updated successfully, but these errors were encountered: