so I've been struggling to find a solution to this issue, I've read another post here with a limit of 20, there solution there didn't help (i.e. not exactly same issue as mine) but then I found this one on Github: https://github.com/signalpoint/DrupalGap/issues/347

so basically I'm referencing to taxonomy term, and it's limited to 20, in the above post the guy with the problem says he fixed it with, by cleaning up some code, but not what the fix was exactly.
Now I have same problem, maybe I'm over thinking this too much (likely), I have the queries to basically unlimited, I'm using v.1.0 of drupalgap.
go to this page:
http://www.byhoest.dk/beta/
click the upper right corner "plus" mark, and the first drop-down is the taxonomy reference in question. there are about 100 terms in the taxonomy, but only 20 are listed.
how to up this to show all ?
(value limit is 1, it's select list with no option to add, it does however contain levels (the uppercased terms))

Comments

tyler.frankenstein’s picture

Status: Active » Postponed (maintainer needs more info)

I'm fairly certain you can use hooks provided by the Services module to alter the Taxonomy Term Index Service Resource call to include more than 20 results: http://cgit.drupalcode.org/services/tree/docs/services.alter.api.php?h=7... - You'll add this code to a custom Drupal module.

dan1eln1el5en’s picture

Hey tyler,

in teh Taxonomy module, I've found you could add page size to the json call:
line 503: options.path = 'taxonomy_term/selectNodes.json&pagesize=100';

now I've mingled a lot with both drupal and drupalgap, so not sure if it helped here, but it works now. I need to test somewhere else too and figure out how to sort alphabetically / leveled

tyler.frankenstein’s picture