Face,Point,Object from gltf model

Hi , I want to know that how we can get the properties of face ,point ,object from gltf model. Seems like there is no example existing .Need help thanks

When you load a model in any format, you get objects like THREE.Group, THREE.Mesh, THREE.BufferGeometry, etc. I would recommend reviewing the documentation for those classes for their properties.

you are right my model get three.Group. But when i see the properties inside then it show nothing related to point,object,face

https://sbcode.net/threejs/raycaster/
I implement the same example in code. Once I add three.Face then it shows me an error that its undefined

A three.js group will contain one or more meshes as children. Each mesh has a geometry, and the geometry defines vertices. If you’re not sure how these objects relate to points and faces I’d suggest reviewing the three.js manual.