Try xpath axes
Also you can configure xpath of WebElement using xpath syntax
I get children of web element by using following logics:
1)
String xpath = parentXpath + "/descendant::*";
appiumDriver.findElements(By.xpath(xpath));
2)
String xpath = parentXpath + "/child::*";
appiumDriver.findElements(By.xpath(xpath));
'parentXpath' it is xpath to your WebElement