I used the GraphicsInformation resource function which was mentioned in a previous answer in a lot of my code. Recently, I tried to use it with Graphics3D and got an error message:
ggg = Graphics3D[Point[Table[{x, 2 x, x - 1}, {x, 0, 10}]]]
pr = Lookup[ResourceFunction["GraphicsInformation"][ggg], "PlotRange"]
My original intention was to obtain the plot range of a Graphics3D object.

AbsoluteOptions[ggg, PlotRange]– Bob Hanlon Sep 25 '22 at 03:58